The session manager provides the means to configure how sessions are created and destroyed, where the session state is stored, and the maximum number of sessions that are available.
The General Properties page opens.
The Manager Properties page opens.
This class must be in the Enterprise Server classpath. Only one session ID generator class per server instance is permitted. 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.UuidGeneratorinterface:
package com.sun.enterprise.util.uuid; public interface UuidGenerator { public String generateUuid(); public String generateUuid(Object obj); //obj is the session object }
The Enterprise Server does not define any additional properties for the session manager.