Option | Description |
Java servlet support | This enables/disables servlet support. The possible values are None, Domino Servlet Manager, and Third-Party Servlet Support. |
Servlet URL path | This is used to indicate the URL string that can be used to access servlets. This is the directory in which servlet related files must be located to properly run. |
Class path | This is the location of any servlets to load and run. This is a local directory. The Domino Servlet Manager locates any servlets that are listed in the classpath directory. |
Servlet file extensions | This is a list of URL file extensions that tell Domino that it is a servlet. A comma separates multiple extensions. |
Session state tracking | This setting signals (enabled or disabled) whether the servlet manager should terminate idle sessions that are initiated by Java calls from servlets. The idle session time limit is set in the next field. |
Idle session timeout | This specifies the amount of time (in minutes) a connection can be idle before it is terminated. This is used only if Session state tracking is enabled. The default is 30. |
Maximum active sessions | This is the number of active servlet sessions allowed on the server at any one time. The default is 1000. |
Session persistence | This signals (enabled or disabled) whether or not session information is saved to disk. |
Method | Description |
getContentLength | Returns the length of content in bytes. |
getContentType | Returns the MIME type for content. |
getCookies | Returns an array of cookie objects. |
getMethod | Returns the HTTP method utilized. |
getParameter(String name) | Returns the value of a specified parameter. The servlet engine places all HTML form values into parameters. Use this method for single-value pairs. |
getParameterValue(String name) | Returns all values for a specified parameter. Use this when a parameter has more than one possible value. |
getQueryString | Returns the query string from the requestor URL. |
getRemoteUser | Returns the name (if any) of the requestor. |