HTTP Channel Advanced Configuration Settings
The following settings configure the internal Tomcat HTTP server used by the channel. They are set in the Advanced tab of the HTTP channel resource editor.
Property | Notes |
---|---|
Server Type | |
The only server type in this release is TOMCAT | |
Debug Request Info | |
Flag that identifies if the information is displayed for request debugging. | |
Access Log Valve | |
Enables access logging on HTTP channels.
In the advanced properties of the channel, if DebugRequestInfo is enabled, it enables other two debug fields DebugLogFolder and DebugLogPattern. DebugLogFolder specifies the location of generating the log file. Default is a new logs folder in the currently running folder. It uses the default log pattern. You can change the log pattern using Tomcat documentation. |
|
Connection Timeout (msec) | |
The number of milliseconds the HTTP server waits after accepting a connection, for the request URI line (that is, the first part of the request message) to be presented.
The value 0 means no timeout. The default is 60000. |
|
Accept Count | |
The maximum queue length for incoming connection requests when all request processing threads are in use. Any requests received when the queue is full are refused.
The value -1 means that a default of 10 is set. The default is -1. |
|
Socket Output Buffer Size | |
The size in bytes of the buffer to be provided for socket output buffering.
The value -1 means that the use of a buffer is disabled. The default is 9000. |
|
Max Processors | |
The maximum number of simultaneous requests that can be handled by the HTTP server.
Set to one of these:
The default is -1. |
|
Connection Linger | |
The number of milliseconds during which the sockets used by the HTTP server linger (that is, not complete immediately) when they are closed. Use of socket linger allows time for a graceful shutdown sequence to complete.
To disable use of socket linger, set to -1. The default is -1. |
|
Enable DNS Lookups | |
Set to
true if you want the calls to
request.getRemoteHost() to perform DNS lookups and return the actual host name of the remote client. Set to
false to skip the DNS lookup and return the IP address as a string instead (thereby improving performance).
By default, DNS lookups are disabled. |
|
TCP No Delay | |
If the check box is selected, the
TCP_NO_DELAY option is not set on the server socket.
If the check box is selected, the TCP_NO_DELAY option is set on the server socket. Using TCP_NO_DELAY improves performance under most circumstances. The default is selected. |
|
Compression | |
Compression can be used to save server bandwidth. Uses
HTTP/1.1 GZIP compression.
The compression option set here is used together with the MIME types shown in the Compressible Mime Types setting. Allowable values are:
|
|
Use Body Encoding for URI | |
If selected, the encoding specified in the
contentType HTTP header is used to decode the request URI.
If not selected, the value in URI Encoding field (or its default value) is used. If the URI Encoding setting is specified, then the Use Body Encoding for URI checkbox is ignored. For an example showing contentType, see Working with Outgoing SOAP Messages (Event Payloads) . The default this option is not selected. |
|
URI Encoding | |
Specifies the character encoding used to decode the request URI. If not specified, UTF-8 is used.
If specified, the Use Body Encoding for URI setting is ignored. The default is UTF-8. |
|
Max KeepAlive Requests | |
The maximum number of HTTP requests that can be pipelined until the connection is closed by the server.
A value of 1 disables HTTP/1.0 keep-alive, as well as HTTP/1.1 keep-alive and pipelining. A value of -1 allows an unlimited amount of pipelined or keep-alive HTTP requests. The default value is -1. |
|
Max HTTP Header Size | |
The maximum size of the request and response HTTP header, specified in bytes.
The default is 4096, that is 4 KB. |
|
Max HTTP Post Size | |
The maximum size of the POST data, specified in bytes, which is handled by the container FORM URL parameter parsing. You can disable the limit by setting this to less than or equal to 0.
The default is 2097152, that is, 2 MB. |
|
Max HTTP Save Post Size | |
The maximum size of the POST data, specified in bytes, which is saved or buffered by the container during FORM or CLIENT-CERT authentication. For both types of authentication, the POST data is saved or buffered before the user is authenticated.
For CLIENT-CERT authentication, the POST data is buffered for the duration of the SSL handshake and the buffer emptied when the request is processed. For FORM authentication the POST is saved while the user is redirected to the login form and is retained until the user successfully authenticates or the session associated with the authentication request expires. A value of -1 means no limit. A value of 0 disables the saving of POST data during authentication. The default is 4096, that is 4 KB. |
|
Protocol | |
Specifies the HTTP protocol to use. Options are as follows:
http HTTP protocol. https For secure communications (SSL). memory Memory protocol. ajp Apache JServ Protocol, a binary protocol. Default is http. |
|
Max Spare Threads | |
The maximum number of unused request processing threads that are allowed to exist until the thread pool starts stopping the unnecessary threads.
The default is 50. |
|
Min Spare Threads | |
The number of request processing threads that are created when this
Connector is first started. The connector also makes sure that it has the specified number of idle processing threads available. Set this to a value smaller than that set for Max Spare Threads.
The default is 4. |
|
Compressible Mime Types | |
This is a comma-separated list of MIME types for which HTTP compression may be used.
This setting works with the Compression setting See notes for that setting for more details. The default value is text/html,text/xml,text/plain. |
|
Restricted User Agents | |
Used to limit support to specific browsers and versions of specific browsers. Comma-separated list containing one or more browser names, such as Mozilla, Internet Explorer. Prepend version with a slash, for example, Mozilla/4.0. | |
Document Root | |
The absolute path where static HTML files are stored. The HTTP server retrieves pages from this location. This setting is used by internal TIBCO BusinessEvents applications and may have limited application for other purposes. | |
Document Page | |
The name of the default static HTML file stored in the document root. This setting is used by internal TIBCO BusinessEvents applications and may have limited application for other purposes. | |
SSL Server: Key Manager Algorithm | |
The key manager algorithm for the SSL Service provider.
The default is SunX509. |
|
SSL Server: Trust Manager Algorithm | |
The trust manager algorithm for the SSL Service provider.
Ensure that a provider is available for any algorithm other than PKIX. The default is PKIX. |
|
SSL Server: Protocols | |
The SSL protocols that can be enabled on the server. Add each protocol using a comma-separated list.
The default protocols are the ones supported by the SSL Provider. (SSLv3 and TLSv1 are the most widely supported.) Leave blank to use the default protocols for your SSL provider. |
|
SSL Server: Ciphers | |
The cipher suites (SSL protocols) used by the server. Add each suite name on a separate line.
The following cipher suites are supported: SSL_RSA_WITH_RC4_128_MD5 SSL_RSA_WITH_RC4_128_SHA TLS_RSA_WITH_AES_128_CBC_SHA TLS_DHE_RSA_WITH_AES_128_CBC_SHA TLS_DHE_DSS_WITH_AES_128_CBC_SHA SSL_RSA_WITH_3DES_EDE_CBC_SHA SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA SSL_RSA_WITH_DES_CBC_SHA SSL_DHE_RSA_WITH_DES_CBC_SHA SSL_DHE_DSS_WITH_DES_CBC_SHA SSL_RSA_EXPORT_WITH_RC4_40_MD5 SSL_RSA_EXPORT_WITH_DES40_CBC_SHA SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA Leave blank to use the default cipher suites for your SSL provider. |