The session timeout parameters are defined in the
general.properties and in the
web.xml file.
The
general.properties file is specific to and controlled by WorldServer. It has two important session parameters for internal processes which are defined in seconds:
1-
session_timeout = We can call this an idle timer. The value associated with this property is in seconds. If it see to 3600, it means that the session will be ended after 60 min of user inactivity. Please refer to
this article2-
absolute_session_timeout = This defines the entire possible duration of a session regardless of how much activity or inactivity there is. If this property is not set, the duration of the session has no time limit. The default value is usually 20 minutes (absolute_session_timeout=1200). You can increase it as needed.
The
web.xml file
is
specific to and controlled by
Tomcat. It contains a timeout setting that is defined in minutes. The default value is 100000
<session-config>
<session-timeout>100000</session-timeout>
</session-config>
This value corresponds to 1666.67 hours or almost 70 days.
This is similar to the
absolute_session_timeout = parameter from WorldServer/general.properties, only that it can overwrite it