Re: Custom authentication mechanism in Tomcat?

2001-02-01 Thread Geoff
From: "Randy Layman" <[EMAIL PROTECTED]> > > Well, the source for Tomcat is open and available, and there is > already a class that authenticates against a database > (org.apache.tomcat.request.JDBCRealm) that seems like it would probably be a > good basis for whatever you are trying to do that it

RE: Custom authentication mechanism in Tomcat?

2001-02-01 Thread Randy Layman
hen I would believe that it was part of the standard. Randy -Original Message- From: Geoff [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 11:08 AM To: [EMAIL PROTECTED] Subject: Re: Custom authentication mechanism in Tomcat? From: "Randy Layman" <[EMAIL PR

RE: Custom authentication mechanism in Tomcat?

2001-02-01 Thread Randy Layman
bject: Custom authentication mechanism in Tomcat? Hi, I'd like to implement a custom authentication mechanism for Tomcat. How should I go about it? OK, so that's a huge question. I'll try and be a bit more specific: I'd like to be able to authenticate users against a database.

RE: Custom authentication mechanism in Tomcat?

2001-02-01 Thread Vijay Prabhakar
Title: RE: Custom authentication mechanism in Tomcat? I'm currently doing something similar.  I have authentication working as an Interceptor.  I based it off of the BaseInterceptor class.  I just re-wrote the authenticate() method.  I suspect that I will need to rewrite part of the co

Custom authentication mechanism in Tomcat?

2001-02-01 Thread Geoff Taylor
Hi, I'd like to implement a custom authentication mechanism for Tomcat. How should I go about it? OK, so that's a huge question. I'll try and be a bit more specific: I'd like to be able to authenticate users against a database. I'm not afraid of writing the code to do all this, but I'd like t