remm 02/04/16 10:48:56 Modified: webapps/tomcat-docs/config coyote.xml jk.xml jk2.xml project.xml webapp.xml Log: - Update according to some of the recent updates in the connector world. - Update the recommended connectors to be JK 2 and the new HTTP/1.1 connector. Revision Changes Path 1.2 +2 -1 jakarta-tomcat-4.0/webapps/tomcat-docs/config/coyote.xml Index: coyote.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/coyote.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- coyote.xml 4 Apr 2002 18:16:07 -0000 1.1 +++ coyote.xml 16 Apr 2002 17:48:56 -0000 1.2 @@ -269,7 +269,8 @@ <attribute name="className" required="true"> <p>The fully qualified class name of the SSL server socket factory implementation class. You must specify - <code>org.apache.catalina.net.SSLServerSocketFactory</code> here.</p> + <code>org.apache.coyote.tomcat4.CoyoteServerSocketFactory</code> here. + </p> </attribute> <attribute name="clientAuth" required="false"> 1.7 +3 -0 jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk.xml Index: jk.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- jk.xml 9 Apr 2002 13:27:29 -0000 1.6 +++ jk.xml 16 Apr 2002 17:48:56 -0000 1.7 @@ -16,6 +16,9 @@ <section name="Introduction"> + <p><b>IMPORTANT NOTE: The JK connector is now deprecated. Use the + Coyote JK 2 connector instead.</b></p> + <p>The <strong>JK Connector</strong> element represents a <strong>Connector</strong> component that communicates with a web connector via the <code>JK</code> protocol (also known as the AJP protocol). 1.2 +10 -2 jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk2.xml Index: jk2.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk2.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- jk2.xml 25 Jan 2002 15:21:34 -0000 1.1 +++ jk2.xml 16 Apr 2002 17:48:56 -0000 1.2 @@ -90,9 +90,11 @@ <subsection name="Standard Implementation"> <p>The standard implementation of <strong>JK 2 Connector</strong> is - <strong>org.apache.jk.server.tomcat40.JkConnector</strong>.</p> + <strong>org.apache.coyote.tomcat4.CoyoteConnector</strong>, but you + must specify the protocolHandlerClassName attribute (see below).</p> - <p><strong>This implementation supports the AJP 2.0 protocol.</strong></p> + <p><strong>This implementation supports the AJP 1.3 and 1.4 + protocols.</strong></p> <p>It supports the following additional attributes (in addition to the common attributes listed above):</p> @@ -131,6 +133,12 @@ will create a server socket and await incoming connections. Your operating system will allow only one server application to listen to a particular port number on a particular IP address.</p> + </attribute> + + <attribute name="protocolHandlerClassName" required="false"> + <p>This attribute value must be + <code>org.apache.jk.server.JkCoyoteHandler</code> to use the JK 2 + handler.</p> </attribute> </attributes> 1.10 +2 -2 jakarta-tomcat-4.0/webapps/tomcat-docs/config/project.xml Index: project.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/project.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- project.xml 4 Apr 2002 18:16:07 -0000 1.9 +++ project.xml 16 Apr 2002 17:48:56 -0000 1.10 @@ -23,9 +23,9 @@ <menu name="Connectors"> <item name="Coyote HTTP/1.1" href="coyote.html"/> - <item name="JK" href="jk.html"/> - <item name="JK 2" href="jk2.html"/> + <item name="Coyote JK 2" href="jk2.html"/> <item name="HTTP/1.1" href="http11.html"/> + <item name="JK" href="jk.html"/> <item name="Webapp" href="webapp.html"/> </menu> 1.3 +3 -0 jakarta-tomcat-4.0/webapps/tomcat-docs/config/webapp.xml Index: webapp.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/webapp.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- webapp.xml 4 Feb 2002 18:03:12 -0000 1.2 +++ webapp.xml 16 Apr 2002 17:48:56 -0000 1.3 @@ -16,6 +16,9 @@ <section name="Introduction"> + <p><b>IMPORTANT NOTE: The Webapp connector is now deprecated. Use + the Coyote JK 2 connector instead.</b></p> + <p>The <strong>Webapp Connector</strong> element represents a <strong>Connector</strong> component that communicates with a web connector via the <code>WARP</code> protocol. This is used for cases
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>