In 11.7 Modify the webapp's web.xml file, found under: <PASOE instance directory>\webapps\<webapp name>\WEB-INF\web.xml
Where: <PASOE instance directory> is the root directory for the PAS instance, set when the PAS instance was defined <webapp name> is the name of the webapp to be configured.
In the web.xml file, add the following parameter, with the required timeout in minutes. -1 means that the session will never expire.
<session-config> <session-timeout>-1</session-timeout> </session-config>
Right below the Spring security.definition, right after '</context-param>' Around line 72.
In 12.x
For APSV transport: Modify the webapp's openedge.properties file, found under: <PASOE instance directory>/<webapp name>/conf/ Where: <PASOE instance directory> is the root directory for the PAS instance, set when the PAS instance was defined <webapp name> is the name of the webapp to be configured.
in the [AppServer.SessMgr.<webapp name>] change:
idleSessionTimeout = 0 A value of -1 is not supported
For SOAP, REST, WEB, & file-system transports: The HTTP Session timeout is configured in web.xml And web.xml under webapps will take precedence over the one under conf/web.xml |