Explanation:
The Session Manager identifies users across HTTP requests using a session cookie.
The name of the session cookie can be specified using the cookieName attribute. The default name is "SESSIONID".
The session timeout can be specified in milliseconds using the timeout attribute. The default timeout is 5 minutes.
Syntax
sessionManager:
cookieName: <string>
domain: <string>
httpOnly: <boolean>
sameSite: <string>
timeout: <number>sessionManager: cookieName: <string> domain: <string> httpOnly: <boolean> sameSite: <string> timeout: <number>
Sample
<sessionManager
cookieName="SESSIONID"
timeout="300000" /><sessionManager cookieName="SESSIONID" timeout="300000" />
Attributes
| Name | Required | Default | Description | Examples |
|---|---|---|---|---|
| cookieName | false | - | - | - |
| domain | false | - | - | - |
| httpOnly | false | - | - | - |
| sameSite | false | - | - | - |
| timeout | false | - | - | - |