I have installed jsse. I had code earlier that used the URL and URLConnection classes in java.net and it worked for this same exact url. I want functionality to set the timeout on the request, hence I am trying this library out, but it throws this error.
If I put that original code back in, it works. That's the reason I am stumped. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 15, 2005 4:33 PM To: HttpClient User Discussion Subject: Re: Can't get httpclient to work for SSL I believe that the SSL libraries weren't included with the JDK until JDK 1.4. I'm guessing you need to download those libraries separately for JDK versions below 1.4. ----- Original Message ----- From: "Sharma, Siddharth" <[EMAIL PROTECTED]> Date: Tuesday, November 15, 2005 3:19 pm Subject: Can't get httpclient to work for SSL > Hi > > I have written the code that uses HTTPClient to communicate with a web > server and it works when I use http, but fails when I use https. > > I get the error > java.net.SocketException: SSL implementation not available > > Before the request is posted, there is code that sets up JSSE in the > following manner: > > Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider()); > System.setProperty("java.protocol.handler.pkgs", > "com.sun.net.ssl.internal.www.protocol"); > > I tried using both Sun's and IBM's JSSE implementation but it did > not work. > What am I missing? > I am using IBM JDK 1.3.1. > > If this should be a JSSE forum post, I apologize. > > Thanks in advance > Sid > > > -------------------------------------------------------------------- > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: httpclient-user- > [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
