On 23/09/2010 11:21, Sean Killeen wrote:
> Our Tomcat Connector (only connector in the file):
> 
>      <Connector
>         port="8443"
> protocol="HTTP/1.1"
> protocols="TLSv1"
> SSLEnabled="true"
> enableLookups="false"
> acceptCount="100"
>         maxThreads="200"
> scheme="https"
> keystoreFile="d:\keystore\.keystore"
> keystorePass="[redacted]"
>         secure="true"
> clientAuth="false"
> sslProtocol="TLSv1"
> cipher="AES"
> allowUnsafeLegacyRenegotiation="false"
> />

You are trying to use the BIO connector (based on the SSL attributes you
have set).

> Sep 23, 2010 2:03:50 PM org.apache.catalina.core.AprLifecycleListener init
> INFO: Loaded APR based Apache Tomcat Native library 1.1.20.
> Sep 23, 2010 2:03:50 PM org.apache.catalina.core.AprLifecycleListener init
> INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters
> [false], ra
> ndom [true].

But you have APR enabled so you'll actually be using the APR/native
connector.

Disable the APR listener in server.xml.

Mark



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

Reply via email to