This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I am trying to post requests using apache HTTP client, to a https site. i set the system property for �javax.net.ssl.trustStore� to hold the certificate included in "cacerts" as truststore. I am trying out on a box with the below server softwares installed.
IBM MQ
IBM MQ Workflow
And got the exception
[org.apache.commons.httpclient.HttpMethodDirector] - I/O exception (java.net.SocketException) caught when processing request: SSL implementation not available
working conditions when invoking a https site using SSL implementation;
add the certificate for the https site to the cacerts truststore * set the system property System.setProperty("javax.net.ssl.trustStore","c:\\Apps\\jre\\lib\\security\\cacerts"); then invoke a https site from WSAD 5.1 - worked
* implemented the same code in a MQ & WF environment, jre 1.4 - worked
* implement the sam in MQ & WF environment jre 1.3 - not working
* explicitly add a provider to java.security file in jre 1.3, append the jsse.jar file in the path info - still didn't resolve the problem
also i am trying to upgrade the jre from 1.3 to 1.4 which would be the final step.