> From: Looijmans, Mike [mailto:mike.looijm...@oce.com]
> Subject: Tomcat 5.5 won't do TLS
> 
> <Connector port="443" maxHttpHeaderSize="8192"
>   maxThreads="150" minSpareThreads="2" maxSpareThreads="75"
>   enableLookups="false" disableUploadTimeout="true"
>   acceptCount="10" scheme="https" secure="true"
>   clientAuth="false" sslProtocol="TLS"
>   keystoreFile="conf/server.ks"
>   keystorePass="tomcat"
> />

Note that the above is for the Java-based SSL connector, but...

> May 4, 2010 3:13:52 PM org.apache.coyote.http11.Http11AprProtocol init
> INFO: Initializing Coyote HTTP/1.1 on http-443

You're using the APR version, since you have tcnative-1.dll in Tomcat's bin 
directory.

You can either disable APR by renaming or deleting the above .dll file (and 
adding the SSLEnabled="true" attribute, as Peter mentioned), or change your SSL 
configuration to the APR settings:

http://tomcat.apache.org/tomcat-5.5-doc/apr.html#HTTPS

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to