HTTP Connector
The HTTP Connector resource template represents an incoming HTTP connection. HTTP connectors are used by a service's SOAP binding and also by the WebApp component.
General
SSL
Advanced
Property | Required? | Editable? | Accepts SVars? | Description |
---|---|---|---|---|
SSL Security Provider | N | Y | N | Optional. The SSL security provider. |
SSL Protocol | N | Y | N | The SSL protocol to use in the SSL connection:
Default: TLSv1.2. |
SSL Cipher Class | N | Y | N | The number of bits in the key used to encrypt data:
Default: At Least 128 Bit. |
Explicit Cipher List | N | Y | Y | A list of ciphers. Enabled when SSL Cipher Class is set to Explicit Ciphers. Use the JSSE format for
ciphers names.
Default: None |
Verify Remote Hostname | N | N | N | Indicate whether the name on the server's certificate must be verified against the server's hostname. If the server's hostname is different than the name on the certificate, the SSL connection will fail. The name on the certificate can be verified against another name by specifying Expected Remote Hostname. When checked, the Expected Remote Hostname field is enabled.
Default: Unchecked. |
Expected Remote Hostname | N | Y | Y | Optional. The expected name of the remote host.
Default: None |
GUI Property | Required? | Editable? | Accepts SVars? | Description |
---|---|---|---|---|
Low Resources Max Idle Time (ms) | N | Y | Y | The period that a connection is allowed to be idle when there are more than (the number of) Low Resources Connections.
Default: -1. There is no timeout. |
Idle Timeout (ms) | N | Y | Y | (New property in Jetty 9) The idle timeout in ms for I/O operations during the handling of a HTTP request. The max idle time is applied to a HTTP request for IO operations and delayed dispatch.
Default: 200000 ms |
Request Header Size (B) | N | Y | Y | (New property in Jetty 9) The maximum size of a request header. Larger headers will allow for more and/or larger cookies plus larger form content encoded in a URL. However, larger headers consume more memory and can make a server more vulnerable to denial of service attacks.
Default: 4096 bytes |
Response Header Size (B) | N | Y | Y | (New property in Jetty 9) The maximum size of a response header. Larger headers will allow for more and/or larger cookies and longer HTTP headers (eg for redirection). However, larger headers will also consume more memory.
Default: 4096 bytes |
Output Buffer Size (B) | N | Y | Y | (New property in Jetty 9) The size of the buffer into which response content is aggregated before being sent to the client. A larger buffer can improve performance by allowing a content producer to run without blocking, however larger buffers consume more memory and may induce some latency before a client starts processing the content.
Default: 24576 bytes |
Linger Time (ms) | N | Y | Y | The time to delay before a socket resets. Before a socket terminates a connection, it can linger, allowing unsent data to be transmitted or it can reset, which means that all unsent data will be lost.
Default: -1. There is no delay before resetting. |
Use Non-Blocking IO Sockets | N | N | N | Indicate whether to use non-blocking or blocking IO. In non-blocking IO, the thread will read whatever data is available and return to perform other tasks. In blocking IO, the thread will block on a read operation until all the data is available.
Default: Checked. |
Use Direct Buffers | N | N | N | Indicate whether to use direct buffers with non-blocking IO. Some JVMs have memory management issues with direct buffers.
Default: Checked. |
Worker Thread Pool | N | Y | Y | The name of a Thread Pool resource instance containing the threads used to handle the HTTP request.
Default: None. |
- amf.node.disableHTTPOptions
- amf.node.disableHTTPOptions.connectorName
- amf.node.disableHTTPPut
- amf.node.disableHTTPPut.connectorName
For example, amf.node.disableHTTPOptions=false disables the HTTP OPTIONS for all connectors on a Node.
Copyright © Cloud Software Group, Inc. All rights reserved.