|
comment
|
any comments for the session cookie.
Servertec Internet Server Session Cookie is the default for Servertec
Internet Server.
Used only when source is set to Cookie.
|
|
domain_name
|
the domain of the session cookie.
Used only when source is set to Cookie.
|
|
interval
|
used to schedule to session manager to remove invalid sessions every n
minutes.
5 minutes is the default for Servertec Internet Server.
-1 can be used to never remove invalid sessions. Using this value
is will increase memory requirements and may have a negative impact on
performance.
The number must be at least 1 minute.
Setting this value too large or too small may impact performance and memory
requirements.
|
|
max_age
|
the maximum number of seconds that a session cookie exists.
-1 is used to maintain the session cookie while the browser is
running.
-1 is the default for Servertec Internet Server.
Used only when Source is set to Cookie.
|
|
name
|
the name of the session identifier.
iwsSessionID is the default for Servertec Internet Server.
|
|
secured
|
whether the session cookie should only be sent by the client to the server
using a secure protocol.
y send to cookie using a secure protocol.
n do not send the cookie using a secure protocol.
n is the default for Servertec Internet Server.
This parameter should only be set to y when the server first sends
the session cookie to the client using a secure protocol.
Used only when source is set to Cookie.
|
|
source
|
the mechanism used to maintain a session's identifier on the client.
Cookie results in a cookie being automatically created on the client's
browser to maintain the session identifier.
URL indicates that the session identifier will be manually
maintained by appending it to all the links. Response.encodeUrl() will
need to be used in servlet generated pages.
Cookie is the default for Servertec Internet Server.
URL should be used when cookies are not supported or allowed
by the client.
|
|
timeout
|
the maximum number of minutes that a session can exist without being accessed
before it is invalidated.
30 minutes is the default for Servertec Internet Server.
-1 is used to maintain all sessions while the server is running.
Setting this value too large or to -1 may impact performance and
memory requirements.
|
|
uri
|
the URI of the session cookie.
%base_uri% - the requested uri.
%script_name% - the the servlet path.
Used only when source is set to Cookie.
|