Hi All, I am using weblogic.net.http.HttpsURLConnection provided by the weblogic 5.1 for connecting to a third party server("https://hostname/--/---") through my servlet.I have a proxy server in between my webserver and the third party server.I am using the following code to make the servlet go through the proxy. Properties props = System.getProperties(); props.put("https.proxyHost","proxy IP address"); props.put("https.proxyPort","proxy port"); String parameters = parameters to ...