Re: Alternative Realm impl. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)?

2006-01-16 Thread Ken Johanson
: [EMAIL PROTECTED] Subject: Re: Alternative Realm impl. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)? Nicholas Irving wrote: I have been looking for a authenticate(user) method, but cannot seem to find one, as I need to do something similar. Any

RE: Alternative Realm impl. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)?

2006-01-15 Thread Nicholas Irving
: Alternative Realm impl. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)? Nicholas Irving wrote: > I have been looking for a authenticate(user) method, but cannot seem to find > one, as I need to do something similar. Any ideas? > Do you mea

Re: Alternative Realm impl. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)?

2006-01-15 Thread Ken Johanson
Nicholas Irving wrote: I have been looking for a authenticate(user) method, but cannot seem to find one, as I need to do something similar. Any ideas? Do you mean doLogin(Principal p)? - To unsubscribe, e-mail: [EMAIL PROTE

RE: Alternative Realm impl. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)?

2006-01-15 Thread Nicholas Irving
. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)? > > Hmm, I see from all the org.apache.catalina.Realm implementations that > come with Tomcat, that authenticate(user,pass) is already there - but I > currently don't know how to g

Re: Alternative Realm impl. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)?

2006-01-14 Thread Ken Johanson
Hmm, I see from all the org.apache.catalina.Realm implementations that come with Tomcat, that authenticate(user,pass) is already there - but I currently don't know how to gain access to the Realm service from within a servlet/jsp (where my controller might be)... and it seems to me that it ma

Re: Alternative Realm impl. that supports: boolean authenticate(String user, String pass) or void doLogin(Prinicipal p)?

2006-01-14 Thread Ken Johanson
Ken Johanson wrote: Is there another commonly used (perhaps not distib'd with tomcat) implementation of Realm that allows a more programmatic type of authentication? I know that a couple other servers provide something like a boolean .authenticate(String user, String pass), which checks agai