On Windows Server 2008, Tomcat 7.0.37 and JRE 7 update 21 run fine with client authentication using the following server.xml file entry:
<Connector port="8443" crlFile="conf/mvca.crl" truststoreType="JKS" truststorePass="changeit" truststoreFile="c:/program files/java/jre7/lib/security/cacerts" keystorePass="maxview" keystoreFile="conf/mvkey.ks" sslProtocol="TLS" clientAuth="true" secure="true" scheme="https" maxThreads="150" SSLEnabled="true" protocol="HTTP/1.1"/>
After upgrading to JRE 7 update 40, I can no longer bring up the tomcat main page at: https:/mymachine.mydomain.com:8443
I see the same error when using JRE 7 update 40 and Tomcat 7.0.42.
There is no HTTP error code. The error message displayed is: Internet Explorer cannot display the webpage
The Tomcat7 service starts.
If client authentication is turned off, the main page will operate.
I don't see any relevant error messages in the Tomcat logs.
What steps can I take to shed more light on the issue to determine the root cause?