Re: [Wicket-user] wicket.WicketRuntimeException while redirecting to Login Page

2006-02-08 Thread Dipu
@lists.sourceforge.net Sent: Tuesday, February 07, 2006 9:50 PM Subject: Re: [Wicket-user] wicket.WicketRuntimeException while redirecting to Login Page please try to upgrade to the latest 1.1 or even better try using the latest snapshots.what you could do is this in 1.1

Re: [Wicket-user] wicket.WicketRuntimeException while redirecting to Login Page

2006-02-08 Thread Igor Vaynberg
left on device. Regards Dipu - Original Message - From: Johan Compagner To: wicket-user@lists.sourceforge.net Sent: Tuesday, February 07, 2006 9:50 PM Subject: Re: [Wicket-user] wicket.WicketRuntimeException while redirecting to Login Page please try

[Wicket-user] wicket.WicketRuntimeException while redirecting to Login Page

2006-02-07 Thread Dipu
Hi , I have got a base page which is extended bymost of the other pages in my application. I am trying to stick in a check in the base pageto redirect the user to the login page if required But its throwing a WicketRuntimeException code snippetforredirecting to the login page is

Re: [Wicket-user] wicket.WicketRuntimeException while redirecting to Login Page

2006-02-07 Thread Johan Compagner
please try to upgrade to the latest 1.1 or even better try using the latest snapshots.what you could do is this in 1.1:redirectToInterceptPage(newPage(Login.class));setResponsePage(null); On 2/7/06, Dipu [EMAIL PROTECTED] wrote: Hi , I have got a base page which is extended bymost of the

Re: [Wicket-user] wicket.WicketRuntimeException while redirecting to Login Page

2006-02-07 Thread Gili
Session.redirectToInterceptPage() has extremely brief Javadoc in 1.2. I understand we are redirecting to a page but there is no mention of what an intercept page is. At the very least we should have a @see #continueToOriginalDestination and a reverse link as well. Gili Johan Compagner