RE: JNDI inside a JAAS LoginModule

2006-10-10 Thread Ashley Hayes
ed to see if you can get the global pool working... A -Original Message- From: John McPeek [mailto:[EMAIL PROTECTED] Sent: 10 October 2006 01:10 To: Tomcat Users List Subject: Re: JNDI inside a JAAS LoginModule Hi Ashley, Thanks for the response. It seems that I misunderstood somethi

RE: JNDI inside a JAAS LoginModule

2006-10-09 Thread Caldarale, Charles R
> From: John McPeek [mailto:[EMAIL PROTECTED] > Subject: Re: JNDI inside a JAAS LoginModule > > Is there a way to see Global resources without > referencing them in every app Context? Try putting the element in conf/context.xml, which is shared by all webapps. - Chuck THI

Re: JNDI inside a JAAS LoginModule

2006-10-09 Thread John McPeek
make sure that your JAAS classes are available to tomcat's classloader, i.e. under common/lib or common classes. Like wise the DB drivers should be there too... A -Original Message- From: Pid [mailto:[EMAIL PROTECTED] Sent: 09 October 2006 13:15 To: Tomcat Users List Subject: Re

RE: JNDI inside a JAAS LoginModule

2006-10-09 Thread Ashley Hayes
. Like wise the DB drivers should be there too... A -Original Message- From: Pid [mailto:[EMAIL PROTECTED] Sent: 09 October 2006 13:15 To: Tomcat Users List Subject: Re: JNDI inside a JAAS LoginModule good question. anyone? John McPeek wrote: > Hi all, > I am hitting a databa

Re: JNDI inside a JAAS LoginModule

2006-10-09 Thread Pid
good question. anyone? John McPeek wrote: > Hi all, > I am hitting a database form a LoginModule. I would like to use a > datasource. I don't have any problem configuring the datasource and > accessing it from an app. I have a global resource > > >... >maxIdle="5

JNDI inside a JAAS LoginModule

2006-10-07 Thread John McPeek
Hi all, I am hitting a database form a LoginModule. I would like to use a datasource. I don't have any problem configuring the datasource and accessing it from an app. I have a global resource ... ... And I add a in the element. All is well in the app. When I