Re: Setting session time out at run time

2010-12-28 Thread Jordi Fernandez
setMaxInactiveInterval(int seconds) will work for a specific user session timeout. It is set in the httpsession object, for example http://bit.ly/g2WdSW. In Struts 2 you can gain access to the HttpSession object by accessing HttpServletRequest (http://struts.apache.org/2.0.14/docs/how-can-we-

Setting session time out at run time

2010-12-27 Thread ashutosh kumar
How can I set session timeout at runtime for struts 2. Does HttpSession.setMaxInactiveInterval work? If yes ,where do I need to set it? Thanks Ashutosh

Re: Setting Session time out

2007-12-26 Thread David Durham, Jr.
On Dec 25, 2007 1:56 AM, Raghuveer <[EMAIL PROTECTED]> wrote: > If session of login user expires or left unused for 15 minutes application > should fire session expire page automatically. This is something that is best accomplished from a client. HTML allows you to specify meta data about a docum

Re: Setting Session time out

2007-12-25 Thread mgainty
:56 AM Subject: Setting Session time out > Is there possibility of setting session time out of application for 15 > minutes? > > > > If session of login user expires or left unused for 15 minutes application > should fire session expire page automatically. > > > >

Setting Session time out

2007-12-24 Thread Raghuveer
Is there possibility of setting session time out of application for 15 minutes? If session of login user expires or left unused for 15 minutes application should fire session expire page automatically. Any idea of how to handle this in my struts application?