I have already posted today, but i need one more help!
My environment was : IIS 5.0 (with DIGITAL Certificate installed) Tomcat 5.0.18 Windows 2000 server + jdk : 1.4.2_03-b02
In my web application I open a HTTPS connection to remote host in this way :
HttpURLConnection Con = null; Url theURL = new URL("https://myremotehoste.com/..");
Con = (HttpsURLConnection)theURL.openConnection(); Con.setDoOutput(true); Con.setDoInput(true); Con.setUseCaches(false); int statusCode=Con.getResponseCode(); .........................................
When I try to retrive "statusCode" by Con.getResponseCode(); I got this exception :
--------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-user-unsubscribe@(protected) For additional commands, e-mail: tomcat-user-help@(protected)