It supports the following additional attributes (in addition to the
common attributes listed above):
Attribute | Description |
---|
acceptCount |
The maximum queue length for incoming connection requests when
all possible request processing threads are in use. Any requests
received when the queue is full will be refused. The default
value is 10.
|
allowTrace |
A boolean value which can be used to enable or disable the TRACE
HTTP method. If not specified, this attribute is set to false.
|
bufferSize |
The size of the output buffer to use. If less than or equal to zero,
then output buffering is disabled. The default value is -1
(i.e. buffering disabled)
|
connectionLinger |
The number of milliseconds during which the sockets used by this
Connector will linger when they are closed.
The default value is -1 (socket linger is disabled).
|
connectionTimeout |
The number of milliseconds this Connector will wait,
after accepting a connection, for the request URI line to be
presented. The default value is 60000 (i.e. 60 seconds).
|
debug |
The debugging detail level of log messages generated by this
component, with higher numbers creating more detailed output.
If not specified, this attribute is set to zero (0).
|
maxProcessors |
The maximum number of request processing threads to be created
by this Connector, which therefore determines the
maximum number of simultaneous requests that can be handled. If
not specified, this attribute is set to 20.
|
minProcessors |
The number of request processing threads that will be created
when this Connector is first started. This
attribute should be set to a value smaller than that set for
maxProcessors . The default value is 5.
|
port |
The TCP port number on which this Connector
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.
|
protocolHandlerClassName |
This attribute value must be
org.apache.jk.server.JkCoyoteHandler to use the JK
handler.
|
tomcatAuthentication |
If set to true , the authetication will be done in Tomcat.
Otherwise, the authenticated principal will be propagated from the native
webaserver and used for authorization in Tomcat.
The default value is true .
|
URIEncoding |
This specifies the character encoding used to decode the URI bytes,
after %xx decoding the URL. If not specified, ISO-8859-1 will be used.
|
useBodyEncodingForURI |
This specifies if the encoding specified in contentType should be used
for URI query parameters, instead of using the URIEncoding. This
setting is present for compatibility with Tomcat 4.1.27 and earlier.
The default value is true .
|