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

2005-04-06 Thread remm
remm2005/04/06 08:54:05

  Modified:webapps/docs/config http.xml ajp.xml
  Log:
  - Fix AJP documentation error about connection timeout (no timeout by 
default).
  
  Revision  ChangesPath
  1.21  +2 -4  jakarta-tomcat-catalina/webapps/docs/config/http.xml
  
  Index: http.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/config/http.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- http.xml  22 Nov 2004 20:18:30 -  1.20
  +++ http.xml  6 Apr 2005 15:54:05 -   1.21
  @@ -158,10 +158,8 @@
   
 subsection name=Standard Implementation
   
  -  pThe standard implementation of the strongHTTP
  -  Connector/strong is
  -  strongorg.apache.coyote.tomcat5.CoyoteConnector/strong.
  -  It supports the following additional attributes (in addition to the
  +  p
  +  HTTP supports the following additional attributes (in addition to the
 common attributes listed above):/p
   
 attributes
  
  
  
  1.13  +8 -9  jakarta-tomcat-catalina/webapps/docs/config/ajp.xml
  
  Index: ajp.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/config/ajp.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ajp.xml   13 Dec 2004 14:25:05 -  1.12
  +++ ajp.xml   6 Apr 2005 15:54:05 -   1.13
  @@ -159,9 +159,8 @@
   
 subsection name=Standard Implementation
   
  -  pThe standard implementation of strongAJP Connector/strong is
  -  strongorg.apache.coyote.tomcat5.CoyoteConnector/strong, but you
  -  must specify the protocol attribute (see below)./p
  +  pTo use AJP, you
  +  must specify the protocol attribute (see above)./p
   
 pstrongThis implementation supports the AJP 1.3 protocol./strong/p
   
  @@ -186,6 +185,12 @@
 value is 10./p
   /attribute
   
  +attribute name=connectionTimeout required=false
  +  pThe number of milliseconds this strongConnector/strong will 
wait,
  +  after accepting a connection, for the request URI line to be
  +  presented.  The default value is infinite (i.e. no timeout)./p
  +/attribute
  +
   attribute name=minProcessors required=false
 strongdeprecated/strong
 pThe minimum number of processors to start at initialization time.
  @@ -239,12 +244,6 @@
 circumstances.  This is set to codetrue/code by default./p
   /attribute
   
  -attribute name=soTimeout required=false
  -  pThe number of milliseconds this strongConnector/strong will 
wait,
  -  after accepting a connection, for the request URI line to be
  -  presented.  The default value is 6 (i.e. 60 seconds)./p
  -/attribute
  -
   attribute name=tomcatAuthentication required=false
 pIf set to codetrue/code, the authetication will be done in 
Tomcat. 
 Otherwise, the authenticated principal will be propagated from the 
native
  
  
  

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



Re: cvs commit: jakarta-tomcat-catalina/webapps/docs/config http.xml ajp.xml

2005-04-06 Thread Bill Barker

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, April 06, 2005 8:54 AM
Subject: cvs commit: jakarta-tomcat-catalina/webapps/docs/config http.xml
ajp.xml


 remm2005/04/06 08:54:05

   Modified:webapps/docs/config http.xml ajp.xml
   Log:
   - Fix AJP documentation error about connection timeout (no timeout by
default).

snip/
   +attribute name=connectionTimeout required=false
   +  pThe number of milliseconds this strongConnector/strong
will wait,
   +  after accepting a connection, for the request URI line to be
   +  presented.  The default value is infinite (i.e. no timeout)./p
   +/attribute
   +

Urm, in JkMain, it's still called 'soTimeout'.  Not that I object to the
name change, but currently setting 'connectionTimeout' on an AJP Connector
won't do anything at all.




This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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

Re: cvs commit: jakarta-tomcat-catalina/webapps/docs/config http.xml ajp.xml

2005-04-06 Thread Remy Maucherat
Bill Barker wrote:
remm2005/04/06 08:54:05
 Modified:webapps/docs/config http.xml ajp.xml
 Log:
 - Fix AJP documentation error about connection timeout (no timeout by
default).
snip/
 +attribute name=connectionTimeout required=false
 +  pThe number of milliseconds this strongConnector/strong
will wait,
 +  after accepting a connection, for the request URI line to be
 +  presented.  The default value is infinite (i.e. no timeout)./p
 +/attribute
 +
Urm, in JkMain, it's still called 'soTimeout'.  Not that I object to the
name change, but currently setting 'connectionTimeout' on an AJP Connector
won't do anything at all.
There's an alias for that in the Connector class. The (only) benefit is 
that it corresponds to the attribute name that was used in 5.0.

Rémy
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: cvs commit: jakarta-tomcat-catalina/webapps/docs/config http.xml ajp.xml

2005-04-06 Thread Bill Barker

- Original Message -
From: Remy Maucherat [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Wednesday, April 06, 2005 2:01 PM
Subject: Re: cvs commit: jakarta-tomcat-catalina/webapps/docs/config
http.xml ajp.xml


Bill Barker wrote:
remm2005/04/06 08:54:05

  Modified:webapps/docs/config http.xml ajp.xml
  Log:
  - Fix AJP documentation error about connection timeout (no timeout by

 default).

 snip/

  +attribute name=connectionTimeout required=false
  +  pThe number of milliseconds this strongConnector/strong

 will wait,

  +  after accepting a connection, for the request URI line to be
  +  presented.  The default value is infinite (i.e. no timeout)./p
  +/attribute
  +

 Urm, in JkMain, it's still called 'soTimeout'.  Not that I object to the
 name change, but currently setting 'connectionTimeout' on an AJP
Connector
 won't do anything at all.

There's an alias for that in the Connector class. The (only) benefit is
that it corresponds to the attribute name that was used in 5.0.


So there is:  An alias for another alias ;-).


Rémy

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





This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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

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

2004-10-16 Thread remm
remm2004/10/16 02:15:37

  Modified:webapps/docs/config http.xml ajp.xml
  Log:
  - Update connector docs with most of the current attributes.
  - The common attributes are those which are present on the Connector class. The 
others depend on the protocol.
  
  Revision  ChangesPath
  1.18  +58 -44jakarta-tomcat-catalina/webapps/docs/config/http.xml
  
  Index: http.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/config/http.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- http.xml  1 Oct 2004 23:52:32 -   1.17
  +++ http.xml  16 Oct 2004 09:15:37 -  1.18
  @@ -57,18 +57,19 @@
   
 attributes
   
  -attribute name=address required=false
  -  pFor servers with more than one IP address, this attribute
  -  specifies which address will be used for listening on the specified
  -  port.  By default, this port will be used on all IP addresses
  -  associated with the server./p
  -/attribute
  -
   attribute name=allowTrace required=false
 pA boolean value which can be used to enable or disable the TRACE
 HTTP method. If not specified, this attribute is set to false./p
   /attribute
   
  +attribute name=emptySessionPath required=false
  +  pIf set to codetrue/code, all paths for session cookies will be set
  +  to code//code. This can be useful for portlet specification 
implementations,
  +  but will greatly affect performance if many applications are accessed on a 
given
  +  server by the client.
  +  If not specified, this attribute is set to codefalse/code./p
  +/attribute
  +
   attribute name=enableLookups required=false
 pSet to codetrue/code if you want calls to
 coderequest.getRemoteHost()/code to perform DNS lookups in
  @@ -85,6 +86,27 @@
 If not specified, this attribute is set to 2097152 (2 megabytes)./p
   /attribute
   
  +attribute name=protocol required=false
  +  pThis attribute value must be codeHTTP/1.1/code to use the HTTP
  +  handler, which is the default./p
  +/attribute
  +
  +attribute name=proxyName required=false
  +  pIf this strongConnector/strong is being used in a proxy
  +  configuration, configure this attribute to specify the server name
  +  to be returned for calls to coderequest.getServerName()/code.
  +  See a href=#Proxy SupportProxy Support/a for more
  +  information./p
  +/attribute
  +
  +attribute name=proxyPort required=false
  +  pIf this strongConnector/strong is being used in a proxy
  +  configuration, configure this attribute to specify the server port
  +  to be returned for calls to coderequest.getServerPort()/code.
  +  See a href=#Proxy SupportProxy Support/a for more
  +  information./p
  +/attribute
  +
   attribute name=redirectPort required=false
 pIf this strongConnector/strong is supporting non-SSL
 requests, and a request is received for which a matching
  @@ -124,6 +146,12 @@
 /p
   /attribute
   
  +attribute name=xpoweredBy required=false
  +  pSet this attribute to codetrue/code to cause Tomcat to advertise
  +  support for the Srevlet specification using the header recommended in the
  +  specification.  The default value is codefalse/code./p
  +/attribute
  +
 /attributes
   
 /subsection
  @@ -145,6 +173,13 @@
 value is 10./p
   /attribute
   
  +attribute name=address required=false
  +  pFor servers with more than one IP address, this attribute
  +  specifies which address will be used for listening on the specified
  +  port.  By default, this port will be used on all IP addresses
  +  associated with the server./p
  +/attribute
  +
   attribute name=bufferSize required=false
 pThe size (in bytes) of the buffer to be provided for input
 streams created by this connector.  By default, buffers of
  @@ -240,27 +275,6 @@
 to a particular port number on a particular IP address./p
   /attribute
   
  -attribute name=protocol required=false
  -  pThis attribute value must be codeHTTP/1.1/code to use the HTTP
  -  handler, which is the default./p
  -/attribute
  -
  -attribute name=proxyName required=false
  -  pIf this strongConnector/strong is being used in a proxy
  -  configuration, configure this attribute to specify the server name
  -  to be returned for calls to coderequest.getServerName()/code.
  -  See a href=#Proxy SupportProxy Support/a for more
  -  information./p
  -/attribute
  -
  -attribute name=proxyPort required=false
  -  pIf this strongConnector/strong is being used in a proxy
  -  configuration, configure this attribute to specify the server port
  -  to be returned for calls to