Well, i'm trying to configure a Session-Timeout because the users are logged about 15 days without Session expires and i don't wanna this. I have a ManagedBean with @Session scope that stores the user logged in.
I did the following configuration in web.xml:
<session-config>
<session-timeout>4</session-timeout>
</session-config>
After this setting, i wait almost 10 minutes without any request in browser but the session keep alive.
What is wrong ? How can i configure a Session-TimeOut ?