larryi 02/02/26 18:25:20 Modified: src/doc tomcat-ssl-howto.html Log: Fix case for "clientauth" attribute in Tomcat 3.3 Revision Changes Path 1.9 +5 -3 jakarta-tomcat/src/doc/tomcat-ssl-howto.html Index: tomcat-ssl-howto.html =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/doc/tomcat-ssl-howto.html,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- tomcat-ssl-howto.html 7 Dec 2001 05:10:44 -0000 1.8 +++ tomcat-ssl-howto.html 27 Feb 2002 02:25:20 -0000 1.9 @@ -621,12 +621,14 @@ <br><tt><font size=-1> secure="true"</font></tt> <br><tt><font size=-1> keystore="/var/tomcat/conf/keystore"</font></tt> <br><tt><font size=-1> keypass="mynewpass"</font></tt> -<br><tt><font size=-1> clientAuth="false" /></font></tt><font size=-1></font> +<br><tt><font size=-1> clientauth="false" /></font></tt><font size=-1></font> </BLOCKQUOTE> In the above examples, we indicate that the keystore is file located at <code>/var/tomcat/conf/keystore</code>, and the password if "mynewpass". Again, these attributes can be skipped if the Tomcat defaults were used. Also, we -specified that we don't want to enforce client authentication. +specified that we don't want to enforce client authentication. Also, note the +case difference between Tomcat 3.2 and Tomcat 3.3 (i.e. "clientAuth" +versus "clientauth"). <P> By default, Tomcat chooses whatever SSL implementation is available, with preference given to PureTLS over JSSE if both are available. You @@ -637,7 +639,7 @@ <br><tt><font size=-1> secure="true"</font></tt> <br><tt><font size=-1> keystore="/var/tomcat/conf/keystore"</font></tt> <br><tt><font size=-1> keypass="mynewpass"</font></tt> -<br><tt><font size=-1> clientAuth="false" </font></tt> +<br><tt><font size=-1> clientauth="false" </font></tt> <br><tt><font size=-1> SSLImplementation="org.apache.tomcat.util.net.PureTLSImplementation" </font></tt> /></font></tt> <P> <code>SSLImplementation</code> can be the name of any class that implements
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>