RE: Passing query string data from an expired page to the expiry page

2012-05-16 Thread Dale Ogilvie
:44 p.m. To: users@wicket.apache.org Subject: Re: Passing query string data from an expired page to the expiry page you can create a requestcyclelistener which on exception checks if it's a pageexpiredexception if it's you can get client url or requestparameters there from the request which

Re: Passing query string data from an expired page to the expiry page

2012-05-16 Thread vineet semwal
@wicket.apache.org Subject: Re: Passing query string data from an expired page to the expiry page you can create a requestcyclelistener which on exception checks if it's a pageexpiredexception if it's you can get client url or requestparameters there from the request which you can pass

Re: Passing query string data from an expired page to the expiry page

2012-05-15 Thread vineet semwal
you can create a requestcyclelistener which on exception checks if it's a pageexpiredexception if it's you can get client url or requestparameters there from the request which you can pass to your errorpage ,just create an appropriate pagerquesthandler at that time . On Tue, May 15, 2012 at 10:22

Passing query string data from an expired page to the expiry page

2012-05-14 Thread Dale Ogilvie
Hi there, We use: getApplicationSettings().setPageExpiredErrorPage(MyExpiredPage.class); When MyExpiredPage is rendered, we want it customized according to a query string parameter on the previous page. Any tips on the best way we can determine the previous page parameters, given that session