You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2003/01/27 19:32:08 UTC

cvs commit: jakarta-tomcat-catalina/webapps/docs/config coyote.xml

remm        2003/01/27 10:32:08

  Modified:    webapps/docs/config coyote.xml
  Log:
  - Documentation update.
  
  Revision  Changes    Path
  1.3       +22 -2     jakarta-tomcat-catalina/webapps/docs/config/coyote.xml
  
  Index: coyote.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/config/coyote.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- coyote.xml	15 Jan 2003 03:40:44 -0000	1.2
  +++ coyote.xml	27 Jan 2003 18:32:08 -0000	1.3
  @@ -102,7 +102,7 @@
   
     <p>The standard implementation of the <strong>Coyote HTTP/1.1 
     Connector</strong> is 
  -  <strong>org.apache.coyote.tomcat4.CoyoteConnector</strong>.
  +  <strong>org.apache.coyote.tomcat5.CoyoteConnector</strong>.
     It supports the following additional attributes (in addition to the
     common attributes listed above):</p>
   
  @@ -128,6 +128,18 @@
         2048 bytes will be provided.</p>
       </attribute>
   
  +    <attribute name="compression" required="false">
  +      <p>The <strong>Connector</strong> may use HTTP/1.1 GZIP compression in
  +      an attempt to save server bandwidth. The acceptable values for the
  +      parameter is "off" (disable compression), "on" (allow compression, which
  +      causes text data to be compressed), "force" (forces compression in all
  +      cases), or a numerical integer value (which is equivalent to "on", but
  +      specifies the minimum amount of data before the output is compressed). If
  +      the content-length is not known and compression is set to "on" or more
  +      aggressive, the output will also be compressed. If not specified, this
  +      attribute is set to "false".</p>
  +    </attribute>
  +
       <attribute name="connectionTimeout" required="false">
         <p>The number of milliseconds this <strong>Connector</strong> will wait,
         after accepting a connection, for the request URI line to be
  @@ -140,6 +152,14 @@
         If not specified, this attribute is set to zero (0).</p>
       </attribute>
   
  +    <attribute name="disableUploadTimeout" required="false">
  +      <p>This flag allows the servlet container to use a different, longer
  +      connection timeout while a servlet is being executed, which in the end
  +      allows either the servlet a longer amount of time to complete its
  +      execution, or a longer timeout during data upload. If not specified, 
  +      this attribute is set to "false".</p>
  +    </attribute>
  +
       <attribute name="maxProcessors" required="false">
         <p>The maximum number of request processing threads to be created
         by this <strong>Connector</strong>, which therefore determines the
  @@ -269,7 +289,7 @@
       <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.coyote.tomcat4.CoyoteServerSocketFactory</code> here.
  +      <code>org.apache.coyote.tomcat5.CoyoteServerSocketFactory</code> here.
         </p>
       </attribute>
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>