RE: tomcat 4.0: Plug in custom Realm

2001-10-25 Thread Barney Hamish
m" to className="my.FooBarRealm" or whatever. As long as this class can be found somewhere in your class path tomcat should be able to load it. Hamish -Original Message- From: Maneesha Jain [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 2:40 AM To: [EMAIL PROTECTED] Subje

Re: tomcat 4.0: Plug in custom Realm

2001-10-25 Thread Craig R. McClanahan
On Tue, 23 Oct 2001, Maneesha Jain wrote: > Date: Tue, 23 Oct 2001 17:39:37 -0700 > From: Maneesha Jain <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: tomcat 4.0: Plug in custom Realm > > Hi, > > I want to plug in a cu

Re: tomcat 4.0: Plug in custom Realm

2001-10-25 Thread Dmitri Colebatch
sorry - I just realised that url doesn't actually contain info on writing your own. hopefully the second part of my email is still useful (o: cheers im On Thu, 25 Oct 2001, Dmitri Colebatch wrote: > yep, see http://jakarta.apache.org/tomcat/tomcat-4.0-doc/realm-howto.html > for details on ho

Re: tomcat 4.0: Plug in custom Realm

2001-10-25 Thread Dmitri Colebatch
yep, see http://jakarta.apache.org/tomcat/tomcat-4.0-doc/realm-howto.html for details on how to create one. Depending one what you need to do, it may be easier to subclass the JDBC realm and override the getStatement (? I think thats it) methods... hth dim On Tue, 23 Oct 2001, Maneesha Jain wro

tomcat 4.0: Plug in custom Realm

2001-10-24 Thread Maneesha Jain
Hi, I want to plug in a custom Realm class in server.xml in tomcat 4.0 ? Is that possible ? Can I need to implement the Realm interface and stick that in the server.xml file? Where should I put this class, so the tomcat can resolve it when parsing server.xml ? Is this procedure documented any