NonStop Servlets for JavaServer Pages (NSJSP) 7.0 System Administrator's Guide

Configuring NSJSP
NonStop Servlets for JavaServer Pages (NSJSP) 7.0 System Administrator’s Guide—674372-005
3-53
The server.xml File
maxPostSize Indicates the maximum size in bytes of the
POST which is handled by the container FORM
URL parameter parsing. The limit can be
disabled by setting this property to a value less
than or equal to 0.
When the content type of the request is
"application/x-www-form-urlencoded" the server
can expect large amount of data to be present in
the request body. maxPostSize indicates the
max amount of data that the servlet container
will process. If the content-length of the request
is greater than the value of maxPostSize a
'debug' message is written and the message
body is not parsed.
If the content-type is multipart/form-data then
the maxPostSize represents the maximum
size of each part of the message that the
container can process.
2097152
maxSavePortSize Indicates the maximum size in bytes of the
POST which is saved/buffered by the container
during FORM or CLIENT-CERT authentication.
For both types of authentication, the POST is
saved/buffered before the user is authenticated.
For CLIENT-CERT authentication, the POST 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
whilst the user is re-directed to the login form
and is retained until the user successfully
authenticates or the session associated with the
authentication request expires.
The limit can be disabled by setting this property
to -1. Setting the property to zero will disable the
saving of POST data during authentication.
4096
scheme Set this property to the name of the protocol you
want to have returned by calls to
request.getScheme(). For example, you
would set this property to https for an SSL
Connector.
http
Table 3-12. Property List for the Connector Element in NSJSP (page 3 of 5)
Property Description Default Value