Re: Question about Life Cycle of Authenticator in Tomcat

2007-11-21 Thread Carlo Politi
Hi Peter, okey but once authenticator returns its value, what happens? what kind of module is executed? Thanks - Messaggio originale - Da: Peter Rossbach <[EMAIL PROTECTED]> A: Tomcat Developers List Inviato: Mercoledì 21 novembre 2007, 19:39:27 Oggetto: Re: Question about Life Cy

Re: Question about Life Cycle of Authenticator in Tomcat

2007-11-21 Thread Peter Rossbach
true and/or false... I suppose that if "true" means all ok and the user is authenticated but i wanted to be sure - Messaggio originale - Da: Peter Rossbach <[EMAIL PROTECTED]> A: Tomcat Developers List Inviato: Mercoledì 21 novembre 2007, 17:32:45 Oggetto: Re: Question

Re: Question about Life Cycle of Authenticator in Tomcat

2007-11-21 Thread Carlo Politi
e - Da: Peter Rossbach <[EMAIL PROTECTED]> A: Tomcat Developers List Inviato: Mercoledì 21 novembre 2007, 17:32:45 Oggetto: Re: Question about Life Cycle of Authenticator in Tomcat Hi, you can find the current implemenation at package org.apache.catalina.authenticator. You can implem

Re: Question about Life Cycle of Authenticator in Tomcat

2007-11-21 Thread Peter Rossbach
Hi, you can find the current implemenation at package org.apache.catalina.authenticator. You can implement you own auth strategie as a context Valve. Your class must be implement the o.a.c.Authenticator interface. Please, look at o.a.c.a.AuthenticatorBase base auth class. Re