Hi,
We are trying to configure the session timeouts of our JSF application. I have added the following to the web.xml of my project
{code:xml}
<session-config>
<session-timeout>1</session-timeout>
</session-config>
{code}
I also added a listener to see when sessions were created/destroyed. This let me see that my session is not timed out after the 1 minute I set. Am I missing a configuration somewhere else?
TIA!