session-timeout in web.xml does not work

2007-11-02 Thread Jignesh Shah
Hi, For my application in the webapps under the WEB-INF directory I have a web.xml where I set the property session-timeout to say 10 (so 10 minutes) , but I can still use the same page after 15 minutes of inactivity. Do I have to do something special on the jsp to invalidate the session ?

Re: session-timeout in web.xml does not work

2007-11-02 Thread Hassan Schroeder
On Nov 2, 2007 12:08 PM, Jignesh Shah [EMAIL PROTECTED] wrote: For my application in the webapps under the WEB-INF directory I have a web.xml where I set the property session-timeout to say 10 (so 10 minutes) , but I can still use the same page after 15 minutes of inactivity. What do you

Re: session-timeout in web.xml does not work

2007-11-02 Thread Jignesh Shah
I was not clear, by use the page , I meant I could still click on the buttons on the jsp and they work fine. The problem is those buttons use beans that have session validity. thanks, Jignesh --- Hassan Schroeder [EMAIL PROTECTED] wrote: On Nov 2, 2007 12:08 PM, Jignesh Shah [EMAIL

Re: session-timeout in web.xml does not work

2007-11-02 Thread Hassan Schroeder
On Nov 2, 2007 12:37 PM, Jignesh Shah [EMAIL PROTECTED] wrote: I was not clear, by use the page , I meant I could still click on the buttons on the jsp and they work fine. The problem is those buttons use beans that have session validity. And you're saying the prior values are still in

Re: session-timeout in web.xml does not work

2007-11-02 Thread Hassan Schroeder
On Nov 2, 2007 12:46 PM, Hassan Schroeder [EMAIL PROTECTED] wrote: If so, I'd add a ServletContextListener to log begin/end of sessions to see what's going on. Actually, I'd stop trying to multitask /quite/ so much on a Friday :-) and implement HttpSessionListener and/or