Check this guide to SSL with Apache SOAP 2.2, not Axis but should cover most/all u need to know about SOAP with SSL:
http://xml.apache.org/soap/docs/install/FAQ_Tomcat_SOAP_SSL.html -----Original Message----- From: Chris Ruegger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 10:15 PM To: [EMAIL PROTECTED] Subject: Re: Axis over https/SSL? 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 ----- Original Message ----- From: Chris Ruegger To: [EMAIL PROTECTED] Sent: Tuesday, February 19, 2002 4:59 PM Subject: Axis over https/SSL? I want to connec to the stock quote example over https. I've downloaded jsse 1.0.2. What mods would I need to make to the client to connect via https? Thanks ahead of time
