Hi, I have a web app running on JBoss. I have made sure the following: 1. /jbossweb-tomcat55.sar/conf/web.xml to set the session timeout as 30 minutes: <session-config> <session-timeout>30</session-timeout> </session-config>
2. I am using sessionCreated/sessionDestroyed and valueBound/valueUnbound to monitor the active sessions in the system 3. there is no session-time setting in web.xml for the application since it has been configured in the tomcat. For some reason, some user's session just won't timeout and showing active in the system for days. The user has already closed the browser. What could be possible reasons for sessions being active for so long? Thanks in advance!