|
I configured WAS Express iSeries using all default settings. The following code displays a new session Id every time I run this servlet. HttpSession session = request.getSession(true); out.println( "sessions.id" + " " + session.getId()); I added a line to set session expiration interval: HttpSession session = request.getSession(true); session.setMaxInactiveInterval(3600); out.println( "sessions.id" + " " + session.getId()); The result is the same: a new session is displayed every time the servlet is run. The same servlet behaves correctly (session Id does not change) when run in Tomcat (iSeries or PC). Which switch in WAS Express controls this? Thanks!
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.