Re: Change default session timeout interval

2012-03-27 Thread Beat Durrer
I tried using a zoneupdater mixin inside a formfragment (which is shown/hidden using the triggerfragment mixin on a radiobutton). The code does what it's intended to do, aside from the reported error. With the mentioned patch the Exception is reported as following: Ajax failure: Status 200 for htt

Re: Change default session timeout interval

2012-03-25 Thread harry
Thank you, lprimak and RuralHunter. I am so dumb. I was so fixated with setMaxInactiveInterval() that I completely forgot about web.xml. Anyhow, I solved the problem by adding 10 to web.xml. Because I am using Jetty, this configuration overwrites the default of 30 set by webdefault

Re: Change default session timeout interval

2012-03-25 Thread Rural Hunter
why don't you just set it in web.xml? I don't think tapestry will violate it. 于 2012/3/26 9:51, harry 写道: Dear Tapestry community, I am wondering what's the best practice to change default session timeout interval. Specifically, I'd like to shorten it. The older discussions in the mailing li

Re: Change default session timeout interval

2012-03-25 Thread Lenny Primak
The session timeout is strictly a function of a servlet container you are using. Most of them listen to web.xml session-timeout property in session-config section. Look up web.xml syntax on the web. This has nothing to do with tapestry. On Mar 25, 2012, at 8:51 PM, harry wrote: > Dear Tap