Re: signout and encryption key in session

2010-06-14 Thread Jeremy Thomerson
please show your signout code On Mon, Jun 14, 2010 at 8:43 AM, fachhoch fachh...@gmail.com wrote: I encode url in wicket suggested way ie using CryptedUrlWebRequestCodingStrategy. this strategy stores encryption key in session so If I signout user and redirect him to a wicket page I get

Re: signout and encryption key in session

2010-06-14 Thread fachhoch
here is the code for signout ((AuditWebSession)(Session.get())).signout(); setRedirect(true); throw new RestartResponseException(new AuditWicketApplication.SignInPageHelper().getSignedOutPage()); AuditWebSession is a subclass of

Re: signout and encryption key in session

2010-06-14 Thread Jeremy Thomerson
Why are you constructing a new page? Just use the page class so that it's a bookmarkable page rather than a session-relative page. On Mon, Jun 14, 2010 at 9:27 AM, fachhoch fachh...@gmail.com wrote: here is the code for signout ((AuditWebSession)(Session.get())).signout();

Re: signout and encryption key in session

2010-06-14 Thread fachhoch
No i am not constructing new page I am just returning the class for that page . I am using public C extends Page RestartResponseException(ClassC pageClass) { RequestCycle.get().setResponsePage(pageClass); } here the code for