Roy, You can try starting Tomcat with one of the following JVM startup switches, and then inspect the logs after trying to connect to Tomcat via HTTPS to see what isn't working:
-Djavax.net.debug=all -Djavax.net.debug=ssl:handshake:data -Djavax.net.debug=help <-- to get a list of options See this page for a more detailed explanation of these debug options: http://java.sun.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#Debug -- Jason Brittain On Thu, Feb 18, 2010 at 10:10 PM, Roy Nabel <r...@rco.com> wrote: > With jdk1.6.0 and tomcat 6.0.10 ssl works great on windows 7 or windows > 2008 R1 . > Server.xml ssl fragment > <Connector port="443" > protocol="HTTP/1.1" > SSLEnabled="true" > maxThreads="150" > scheme="https" > secure="true" > clientAuth="false" > keystoreFile="C:\jdk1.6.0\bin\ domain_name.keystore" > SSLCertificateKeyFile="C:\jdk1.6.0\bin\ domain_name.keystore" > SSLCertificateFile="C:\jdk1.6.0\bin\domain_name.crt" > SSLCertificateChainFile="C:\jdk1.6.0\bin\ComodoEVSGCCA.crt" > keystorePass="*******" > sslProtocol="TLS" /> > When you replace tomcat 6.0.10 with tomcat 6.0.24 tomcat does not produce > logs or connect. > Any suggestions? Is there some new setting or procedure with 6.0.24? > Thanks, > Roy > > -- Jason Brittain