RE: LoginPage problem in T4

2006-10-18 Thread Denis Souza
Denis -Original Message- From: Ryan Holmes [mailto:[EMAIL PROTECTED] Sent: quarta-feira, 18 de outubro de 2006 01:50 To: Tapestry users Subject: Re: LoginPage problem in T4 I'm not familiar with that exact error but if that pageValidate method is in your Login page (or it's superclass, etc

Re: LoginPage problem in T4

2006-10-17 Thread Ryan Holmes
I'm not familiar with that exact error but if that pageValidate method is in your Login page (or it's superclass, etc.), then you're creating a sort of recursive condition where activating the Login page when the user is not logged in will redirect back to the Login page. The Vlib app use

LoginPage problem in T4

2006-10-17 Thread Denis Souza
Hi, I'm trying to implement a login page using VLib's mechanism so I implemented PageValidationListener in my page's superclass with the following: public void pageValidate(PageEvent event) { if (!isUserLoggedIn()) { LoginPage login = getLoginPage(); login.setCallback(new