HTTP Server Parameters
Request handling is implemented by expressions in which default data tables provide access to request and response parameters. These parameters are presented as fields of the default data table.
Request Parameters
The following request parameters are available in the default data table:
Name | Type | Description |
authType | String | The name of the relevant scheme. |
characterEncoding | String | The name of the character encoding used in the body of the request. |
contentLength | Integer | The length, in bytes, of the request body and made available by the input stream, or -1 if the length is not known. |
contentType | String | The MIME type of the body of the request, or null if the type is unknown. |
contextPath | String | The portion of the request URI that indicates the context of the request. |
headers | DataTable | A data table of the headers of the request. |
isAsyncStarted | Boolean | Checks if this request has been put into asynchronous mode. |
isAsyncSupported | Boolean | Checks if this request supports asynchronous operation. |
isSecure | Boolean | A boolean indicating whether this request was made using a secure channel, such as HTTPS. |
localAddr | String | The Internet Protocol (IP) address of the interface on which the request was received. |
localName | String | The host name of the Internet Protocol (IP) interface on which the request was received. |
localPort | Integer | The Internet Protocol (IP) port number of the interface on which the request was received. |
method | String | The name of the HTTP method with which this request was made, for example, GET, POST, or PUT. |
pathInfo | String | An extra path information associated with the URL the client sent when it made this request. |
protocol | String | The name and version of the protocol used in the request is in the form of protocol/majorVersion.minorVersion, for example, HTTP/1.1. |
queryString | String | The query string that is contained in the request URL after the path. |
remoteAddr | String | The Internet Protocol (IP) address of the client or last proxy that sent the request. |
remoteHost | String | The fully qualified name of the client or the last proxy that sent the request. |
remotePort | Integer | The Internet Protocol (IP) source port of the client or last proxy that sent the request. |
remoteUser | String | The login of the user making this request, if the user has been authenticated, or null if the user has not been authenticated. |
requestBody | String | The body of the request as string. |
requestedSessionId | String | The session ID specified by the client. |
requestParameters | DataTable | A table with request parameters. May be empty if it is read after request body, or content type is different from application/x-www-form-urlencoded. |
requestURI | String | The part of this request's URL from the protocol name. |
requestURL | String | The reconstructed URL which the client used to make the request. |
scheme | String | The name of the scheme used to make this request, for example, http, https, or ftp. |
serverName | String | The host name of the server to which the request was sent. |
serverPort | Integer | The port number to which the request was sent. |
Response Parameters
Response parameters are presented in the same default data table. By setting them you can create custom HTTP response. The following response parameters are available:
Name | Type | Description |
responseBody | String | The body of the response as string. |
responseCharacterEncoding | String | The name of the character encoding (MIME charset) used for the body sent in the response. |
responseContentLength | Integer | The length of the content body in the response (the HTTP Content-Length header). |
responseContentType | String | The content type used for the MIME body sent in this response. If no type is explicitly defined, the default type is ISO-8859-1. |
responseError | Integer | An error response to the client using the specified status code and clearing the buffer. |
responseRedirect | String | Sends a temporary redirect response to the client using the specified redirect location URL. |
responseStatus | Integer | The status code for the response. |
Was this page helpful?