Here are some misc. doc errors for the Tomcat 5.5 SSL topic I noticed:
The Connector configuration XML snippet has a semi-colon after
secure="true".
The Connector configuration XML snippet references minProcessors and
maxProcessors. These parameters do not seem to be current parameters for
the HTTP connector. They appear to have been deprecated for the AJP
connector. It appears they are replaced with minSpareThreads and
maxThreads would be the closest matches.
debug= is referenced, but not documented in the standard Connector
reference.
The attribute for "disableUploadTimeout" is the default. Since it's the
default, it's kind of redundant. This also applies to clientAuth, and
sslProtocol.
So, the corrected example would be:
<-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
<!--
<Connector
port="8443" enableLookups="true"
maxThreads="75"
acceptCount="100" scheme="https" secure="true"/>
-->
--
George Sexton
MH Software, Inc.
Voice: +1 303 438 9585
URL: http://www.mhsoftware.com/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]