Re: How to turn off JNDI datasource connection pooling

2009-01-17 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Len, Len Popp wrote: > On Fri, Jan 16, 2009 at 16:45, Christopher Schultz > wrote: >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> Keith, >> >> Keith Thomas wrote: >>> As part of the >>> deployment I just need a way of defining the datasour

Re: How to turn off JNDI datasource connection pooling

2009-01-17 Thread Pid
Caldarale, Charles R wrote: >> From: Pid [mailto:p...@pidster.com] >> Subject: Re: How to turn off JNDI datasource connection pooling >> >> I'm getting a little confused trying to follow this thread. > > There was a distinct lack of specifics in the beginning

RE: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Caldarale, Charles R
> From: Pid [mailto:p...@pidster.com] > Subject: Re: How to turn off JNDI datasource connection pooling > > I'm getting a little confused trying to follow this thread. There was a distinct lack of specifics in the beginning. However, I think I understand why he's doing thi

Re: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Pid
Caldarale, Charles R wrote: >> From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] >> Subject: RE: How to turn off JNDI datasource connection pooling >> >> Look at the construct in the servlet spec. > > O.k., that was too simplistic. You'll also ne

Re: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Len Popp
On Fri, Jan 16, 2009 at 16:45, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Keith, > > Keith Thomas wrote: >> As part of the >> deployment I just need a way of defining the datasource in a manner that is >> external to my code and configurable by administrators.

Re: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Keith, Keith Thomas wrote: > As part of the > deployment I just need a way of defining the datasource in a manner that is > external to my code and configurable by administrators. Use of a DataSource implies the use of a connection pool, which seems

RE: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Caldarale, Charles R
> From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] > Subject: RE: How to turn off JNDI datasource connection pooling > > Look at the construct in the servlet spec. O.k., that was too simplistic. You'll also need the following. Does your DB driver include some f

RE: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Caldarale, Charles R
> From: Caldarale, Charles R > Subject: RE: How to turn off JNDI datasource connection pooling > > Make sure you set auth=Servlet in the . That should be auth="Application". - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and i

RE: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Caldarale, Charles R
> From: Keith Thomas [mailto:keith.tho...@gmail.com] > Subject: Re: How to turn off JNDI datasource connection pooling > > I just want to be able to define the datasource using JNDI so > it is external to my application. That's another piece of information you haven't

Re: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Keith Thomas
JNDI datasource definition without also bringing along database connection pooling so they cannot use Tomcat. -- View this message in context: http://www.nabble.com/How-to-turn-off-JNDI-datasource-connection-pooling-tp21490681p21507767.html Sent from the Tomcat - User mailing list archiv

RE: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Keith Thomas
live with the uid/pw being stored in a clear text xml file before taking my app. -- View this message in context: http://www.nabble.com/How-to-turn-off-JNDI-datasource-connection-pooling-tp21490681p21507739.html Sent from the Tomcat - User mailing list archive at Nabble.com

Re: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Kees Jan Koster
Dear Keith, It's not clear what you want to do (as opposed to what you don't want to do). Is your goal to use a >> new DB connection for every DB access your webapp makes, or do you want to do DB connection >> pooling inside your webapp, or ??? Not using connection pooling at all is a r

RE: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Caldarale, Charles R
> From: Keith Thomas [mailto:keith.tho...@gmail.com] > Subject: RE: How to turn off JNDI datasource connection pooling > > The security for the data within the database is entirely > baked into the restriction that every user has their own > database connection. >From the

RE: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Keith Thomas
ns but the app just seems to be hanging. -- View this message in context: http://www.nabble.com/How-to-turn-off-JNDI-datasource-connection-pooling-tp21490681p21507284.html Sent from the Tomcat - User mailing list archive at Nabble.com. -

RE: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Caldarale, Charles R
> From: Keith Thomas [mailto:keith.tho...@gmail.com] > Subject: Re: How to turn off JNDI datasource connection pooling > > provided enough explanation but what I want is for Tomcat > to keep out of connection creation It's not clear what you want to do (as opposed to what

Re: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Keith Thomas
with Pool or Pooling in the name are getting involved. -- View this message in context: http://www.nabble.com/How-to-turn-off-JNDI-datasource-connection-pooling-tp21490681p21506964.html Sent from the Tomcat - User mailing list a

Re: How to turn off JNDI datasource connection pooling

2009-01-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Keith, Keith Thomas wrote: > I have an application that runs against a legacy database. For reasons I > won't go into here I need to turn off jndi datasource connection pooling. I > have been unsuccessful finding documentation or mailing list entries

Re: How to turn off JNDI datasource connection pooling

2009-01-15 Thread Keith Thomas
Thanks Chuck. I've uploaded it again, this time as a text file. It seems ok this time. On Thu, Jan 15, 2009 at 7:02 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Keith Thomas [mailto:keith.tho...@gmail.com] > > Subject: How to turn off JNDI dataso

RE: How to turn off JNDI datasource connection pooling

2009-01-15 Thread Caldarale, Charles R
> From: Keith Thomas [mailto:keith.tho...@gmail.com] > Subject: How to turn off JNDI datasource connection pooling > > I attach my server.xml file in case this helps. Your attachment failed to materialize. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE

How to turn off JNDI datasource connection pooling

2009-01-15 Thread Keith Thomas
nst a 10gR2 database. I attach my server.xml file in case this helps. http://www.nabble.com/file/p21490681/server.xml server.xml -- View this message in context: http://www.nabble.com/How-to-turn-off-JNDI-datasource-connection-pooling-tp21490681p21490681.html Sent from the Tomcat - User mailing