larryi      02/04/07 19:16:40

  Modified:    src/etc  server.xml modules.xml
  Log:
  Include CoyoteConnector in modules.xml and add a disabled
  CoyoteConnector to server.xml.
  
  Revision  Changes    Path
  1.96      +15 -0     jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- server.xml        31 Dec 2001 23:35:47 -0000      1.95
  +++ server.xml        8 Apr 2002 02:16:40 -0000       1.96
  @@ -211,6 +211,21 @@
           -->
   
           <!--
  +         Uncomment for HTTP 1.1 support using the Coyote adapter and
  +         and Http11 processor from jakarta-tomcat-connectors.
  +
  +         Note: CoyoteConnector supports the same attributes as
  +               Http10Connector
  +      -->
  +        <!--
  +        <CoyoteConnector   port="8081" 
  +                        secure="false"
  +                        maxThreads="100"
  +                        maxSpareThreads="50"
  +                        minSpareThreads="10" />
  +     -->
  +
  +        <!--
                JNI connector. It assumes the library is located in 
                TOMCAT_HOME/bin/native/jni_connect.[dll, nlm, so]. or in 
LD_LIBRARY_PATH.
                For different paths set "nativeLibrary" parameter.
  
  
  
  1.13      +2 -0      jakarta-tomcat/src/etc/modules.xml
  
  Index: modules.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/etc/modules.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- modules.xml       27 Aug 2001 02:13:42 -0000      1.12
  +++ modules.xml       8 Apr 2002 02:16:40 -0000       1.13
  @@ -19,6 +19,8 @@
   
   <module name="Http10Connector" 
javaClass="org.apache.tomcat.modules.server.Http10Interceptor"/>
   
  +<module name="CoyoteConnector" 
javaClass="org.apache.coyote.tomcat3.CoyoteInterceptor"/>
  +
   <module name="JniConnector" 
javaClass="org.apache.tomcat.modules.server.JNIConnectionHandler"/>
   
   <module name="Ajp12Connector" 
javaClass="org.apache.tomcat.modules.server.Ajp12Interceptor"/>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to