Re: set session-timeout

2013-10-21 Thread Martin Grigorov
http://docs.oracle.com/cd/E17802_01/webservices/webservices/docs/1.6/api/javax/servlet/http/HttpSession.html#setMaxInactiveInterval(int) On Mon, Oct 21, 2013 at 4:44 PM, christoph.ma...@t-systems.com wrote: Hello, in my application i have set the errorpage for expired pages like this:

Re: set session-timeout

2013-10-21 Thread francois meillet
HttpSession httpSession = ((ServletWebRequest) RequestCycle.get().getRequest()).getContainerRequest().getSession(); httpSession.setMaxInactiveInterval(timeOut); François On Mon, Oct 21, 2013 at 4:12 PM, Martin Grigorov mgrigo...@apache.orgwrote:

Re: set session-timeout

2013-10-21 Thread Michael Haitz
or you can add the following snippet to your web.xml: session-config session-timeoutTIME_IN_MINUTES/session-timeout /session-config cheers, Michael Am 21.10.2013 um 16:34 schrieb francois meillet francois.meil...@gmail.com: HttpSession httpSession = ((ServletWebRequest)