> i am trying to switch from http to https
> i have uncommented the SSl HTTP/1.1 connector
Its impossible to tell whats going on without more context. Just looking at the
error tells us nothing, only that it couldn't find a certain class. So solely
based on that I'd say your configuration doesn't support SSL.
Implementing SSL takes more than just uncommenting some line.
> init
> SEVERE: Error initializing socket factory
> java.lang.ClassNotFoundException: Can't find any SSL implementation
> at
Time to properly configure SSL on whatever platform you're using.

Signature
Groetjes, Peter
.\\ PGP/GPG key: http://www.catslair.org/pubkey.asc
admin@lifestyles.lt - 18 Jan 2007 08:29 GMT
System.setProperty("java.protocol.handler.pkgs",
"com.sun.net.ssl.internal.www.protocol");
Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
You need to set your ssl handler otherwise you won't be able to use
https. Due to trusted certification licensing issues Sun removed this
handler from automated use so you have to set it yourself.