Re: tapestry4 force invalidate user session in pagevalidate()

2009-12-29 Thread Norman Franke
I usually have the HttpServletRequest injected, then do: request.getSession().invalidate(). Norman Franke Answering Service for Directors, Inc. www.myasd.com On Dec 28, 2009, at 9:47 PM, asianCoolz wrote: for some reason i need to do force invalidate of user session on pagevalidate(). i c

tapestry4 force invalidate user session in pagevalidate()

2009-12-28 Thread asianCoolz
for some reason i need to do force invalidate of user session on pagevalidate(). i call event.getRequestCycle().cleanup(); is this ok? or is there any proper method i should call to force invalidate current user session? - To