This section describes the HTTP session settings in the Web container. HTTP sessions are unique web sessions that have their state data written to a persistent store.
To set the session timeout value:
See Also:
The session manager allows you to configure how sessions are created and destroyed, where session state is stored, and the maximum number of sessions.
To change the session manager settings:
The Reap Interval field is the interval in seconds that inactive session data will be deleted from the store.
The Max Sessions field is the maximum number of sessions allowed.
The Session Filename field is the file that contains the session data.
The Session id Generator Classname field allows you to specify a custom class for generating unique session IDs. You can only use one session ID generator class per server instance, and all instances in a cluster must use the same session ID generator to prevent session key collision.
Custom session ID generator classes must implement the com.sun.enterprise.util.uuid.UuidGenerator
interface:
|
The class must be in the Application Server classpath.
See Also:
The Reap Interval field is the interval in seconds that inactive session data will be deleted from the store.
See Also: