Need help with JSSE settings for Axis2 auto-generated client.
843811Dec 10 2009 — edited Dec 14 2009Hi all.
I have several working clients generated for me in Axis2 from WSDL's using wsdl2java utility. The clients use HTTP transport but I need to use HTTPS now. I assume JSSE is used for SSL communication in Axis2.
I have created the keystore and set these parameters in code.
System.setProperty("javax.net.ssl.trustStore", "/path/to/.keystore");
System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
The lower level mechanics such as socket creation and utilization are hidden from me in Axis2.
What other ssl parameters can be set similar to these? I particularly care about protocol, cipher, keep-alive? I couldn''t find the whole list with possible values. Or may be I should use some different method to set them?