I'm trying to write the part of my app so that it handles session timeouts gracefully, but I can't seem to control how the duration of time before a timeout occurs for testing.
I am using JBoss 5.1, and I am modifying the session-config my web descriptor (web.xml) such that the session times out after a minute (just for testing)
<session-config>
<session-timeout>1</session-timeout>
</session-config>
But after creating a session by logging in, it never times out. No setting that I give it causes a timeout.
In a tomcat environment, I haven't had this problem. Has anyone had a similar problem with JBoss?