I am trying to move from Tomcat 4.1.27 to 5.5.16 I use Tomcat to test round trip http/https communication from a JMS server to http and https clients. I'm using keystore files so I needed to add these to server.xml. I'm using native libraries since it appears that these are required if you want to use a non-default keystoreFile. I added tcnative-1.dll and openssl.exe to the PATH. I tried both JDK 1.4 compatibility and 1.5 and get the same results. The server starts OK but the https connector will only work as http. I tried sslProtocol="TLS", "SSL" and leaving it out. What am I doing something wrong? Below is the relevant section of server.xml as well as the server console.
<!-- Define a SSL HTTP/1.1 Connector on port 8443 --> <Connector port="8443" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="C:\Tomcat\apache-tomcat-5.5.16\apache-tomcat-5.5.16\server.keystore" keystorePass="changeit"/> Created MBeanServer with ID: 1ef9f1d:10abdbb3f01:-8000:SNCFW-DMZ3:1 Apr 21, 2006 2:34:26 PM org.apache.coyote.http11.Http11AprProtocol init INFO: Initializing Coyote HTTP/1.1 on http-8081 Apr 21, 2006 2:34:26 PM org.apache.coyote.http11.Http11AprProtocol init INFO: Initializing Coyote HTTP/1.1 on http-8443 Apr 21, 2006 2:34:26 PM org.apache.coyote.http11.Http11AprProtocol init INFO: Initializing Coyote HTTP/1.1 on http-8553 Apr 21, 2006 2:34:27 PM org.apache.coyote.ajp.AjpAprProtocol init INFO: Initializing Coyote AJP/1.3 on ajp-8009 Apr 21, 2006 2:34:27 PM org.apache.catalina.startup.Catalina load INFO: Initialization processed in 875 ms Apr 21, 2006 2:34:27 PM org.apache.catalina.core.StandardService start INFO: Starting service Catalina Apr 21, 2006 2:34:27 PM org.apache.catalina.core.StandardEngine start INFO: Starting Servlet Engine: Apache Tomcat/5.5.16 Apr 21, 2006 2:34:27 PM org.apache.catalina.core.StandardHost start INFO: XML validation disabled Apr 21, 2006 2:34:29 PM org.apache.coyote.http11.Http11AprProtocol start INFO: Starting Coyote HTTP/1.1 on http-8081 Apr 21, 2006 2:34:29 PM org.apache.coyote.http11.Http11AprProtocol start INFO: Starting Coyote HTTP/1.1 on http-8443 Apr 21, 2006 2:34:29 PM org.apache.coyote.http11.Http11AprProtocol start INFO: Starting Coyote HTTP/1.1 on http-8553 Apr 21, 2006 2:34:29 PM org.apache.coyote.ajp.AjpAprProtocol start INFO: Starting Coyote AJP/1.3 on ajp-8009 Apr 21, 2006 2:34:29 PM org.apache.catalina.storeconfig.StoreLoader load INFO: Find registry server-registry.xml at classpath resource Apr 21, 2006 2:34:29 PM org.apache.catalina.startup.Catalina start INFO: Server startup in 2421 ms -- View this message in context: http://www.nabble.com/Problems-configuring-SSL-connector-t1488604.html#a4032782 Sent from the Tomcat - User forum at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]