Hi All, I am working on a client that calls few services. It works very well without proxy. The new requirements are that they should also work same via a proxy server. This is the code that i use to set the proxy settings.. System.setProperty( "http.proxySet", "true" ); System.setProperty( "http.proxyHost", "192.168.1.30" ); System.setProperty( "http.proxyPort", "808" ); System.setProperty( "https.proxySet", "true" ); System.setProperty( ...