It is a simple matter of adding these
lines?:
import jsse classes....
// Set up
Security
System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol"); //Register
JSSE
Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider()); // Connect to Axis
Servlet
URL url = new URL("https://myserver/axis/servlet/AxisServlet");
etc...
It looks like SOAP hiccups if I don't have a valid
certificate installed, which is
what I would expect. Any way to get around this or
do I need a legit certificate?
thanks
|
- Axis over https/SSL? Chris Ruegger
- RE: Axis over https/SSL? Chris Ruegger
- RE: Axis over https/SSL? Adam.Leggett