ServiceClient client = new ServiceClient(); // build your service client here
Options options = new Options();
HttpTransportProperties.ProxyProperties proxyProperties = new HttpTransportProperties.ProxyProperties();
proxyProperties.setDomain("");
proxyProperties.setProxyName("");
proxyProperties.setProxyPort(8000);
proxyProperties.setUserName("");
proxyProperties.setPassWord("");
options.setProperty(HTTPConstants.PROXY, proxyProperties);
client.setOptions(options);
Спасибо ...