I’m migrating from Tomcat5.5 to Tomcat6. I have two webapps: Login and Orders.
The SSO is enabled.
The user A logins on Login, then he browses through Orders app where some parameters are stored in session. The user A makes logout (session.invalidate()).
On the same browser (without closing it) the user B logins on Login app, then he loads Orders app and he find in session the parameters of user A! Why?
Something is changed about SSO from Tomcat5.5 and Tomcat6?
Solved, I forgot the <login-config> entry in the global web.xml!