> Well, I finally got round to playing with SSL stuff. got my XML-RPC > servlet running, with tomcat handling the SSL. > > Altered my test client to use SecureXmlRpcClient ... which then chokes > on the https protocol. > > java.net.MalformedURLException: unknown protocol: https > at java.net.URL.<init>(URL.java:475) > at java.net.URL.<init>(URL.java:371) > at java.net.URL.<init>(URL.java:325) > at org.apache.xmlrpc.XmlRpcClient.<init>(XmlRpcClient.java) > at > org.apache.xmlrpc.secure.SecureXmlRpcClient.<init>(SecureXmlRpcClient.ja > va) > at > uk.co.autonomous.util.xmlrpc.TestClient.main(TestClient.java:54) > java.net.MalformedURLException: unknown protocol: https > > So, courtesy of tomcat, I can use SSL, but I can't seem to test it. > > Am I doing something wrong?
For JDK 1.3, the SSL code is not in the main JDK; you need to download it from Sun as an extra and it will register itself with the URL. I think this might be your problem. http://java.sun.com/products/jsse/index-103.html Will.
