Note: To view and update the Session Manager settings discussed here, use the administrative console. Select the application server that hosts the problem application, then under Additional properties, select Web Container, then Session manager.
What kind of problem are you having?
HTTP Sessions are not getting created, or are lost between requests
By default, the Session Manager uses cookies to store the session ID on the client between requests. Unless you intend to avoid cookie-based session tracking, ensure that cookies are flowing between WebSphere Application Server - Express and the browser:
HTTP Sessions are not persistent
If your HTTP sessions are not persistent, that is session data is lost when the application server restarts or is not shared across the cluster:
Note that these settings have to be checked against the properties of an existing Data Source in the administrative console. The Session Manager does not automatically create a session database for you.
Session is shared across multiple browsers on same client machine
This behavior is browser-dependent. It varies between browser vendors, and also may change according to whether a browser is launched as a new process or as a subprocess of an existing browser session.
The Cookie maximum age property of the Session Manager also affects this behavior, if cookies are used as the session-tracking mechanism. If the maximum age is set to some positive value, all browser instances share the cookies, which are persisted to file on the client for the specified maximum age time.
Session is not getting invalidated immediately after specified Session timeout interval
The Session Manager invalidation process thread runs every x seconds to invalidate any invalid sessions, where x is determined based on the Session timeout interval specified in the Session manager properties. For the default value of 30 minutes, x is around 300 seconds. In this case, it could take up to 5 minutes (300 seconds) beyond the timeout threshold of 30 minutes for a particular session to become invalidated.
Unwanted sessions are being created by JSP files
As required by the JavaServer Page specification, by default, JSP files perform a request.getSession(true), so that a session is created if none exists for the client. To prevent JSP files from creating a new session, set the session scope to false in the JSP file using the page directive as follows:
<% @page session="false" %>
Session data intended for one client is seen by another client
In rare situations, usually due to application errors, session data intended for one client might be seen by another client. This situation is referred to as session data crossover. When the DebugSessionCrossover custom property is set to true, code is enabled to detect and log instances of session data crossover. Checks are performed to verify that only the session associated with the request is accessed or referenced. Messages are logged if any discrepancies are detected. These messages provide a starting point for debugging this problem. This additional checking is only performed when running on the WebSphere-managed dispatch thread, not on any user-created threads. See Web container custom properties for more information.
Additionally, use the following resources for more troubleshooting assistance:
Read the release notes. WebSphere Application Server - Express Release Notes (http://www.ibm.com/servers/eserver/iseries/software/websphere/wsappserver/express/docs/ relnotesexp51.html) .
Check the WebSphere Application Server FAQ database .
Refer to the WebSphere Application Server for iSeries newsgroup .
This iSeries Technical Support Web-based forum is dedicated to WebSphere
Application Server for iSeries.
Contact IBM support. For more information, see Get support for WebSphere Application Server - Express in the Overview topic.