Bruce Altner <[EMAIL PROTECTED]> writes: > At 04:04 PM 2/27/2002 -0800, you wrote: > > Greetings: > > I am experiencing inconsistent behavior with the session timeout > function, which I have set for 30 mins (1800 seconds in TR.props). > Sometimes it will indeed time me after a break for lunch yet at other > times I'll turn on my monitor in the morning and the session is still > active from the day before. > > Has anyone else experienced this? What are the relevant sections of > code in turbine that control this so that I can try to see what's > happening?
I believe the session.timeout property is used in Turbine.java in the jakarta-turbine-2 source repository. It simply delegates to the Servlet API's HttpSession interface. It's possible (though from what you describe, unlikely) that there is some sort of race condition between the call to HttpSession and the servlet container's timeout. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
