RE: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2009-01-30 Thread Hamacher, Eric
9 2:43 PM To: Tomcat Users List Subject: Re: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context Hamacher, Eric wrote: > I solved the problem by putting java:/comp/env in the JNDI lookup in the code. So you're not putting: java:/comp/jdbc/GFDataSource? p > Tha

Re: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2009-01-29 Thread Pid
> url="jdbc:oracle:thin:@uxsvr3.enetrix.msn:2224:STG9"/> > > And now I'm back to "javax.naming.NameNotFoundException: Name jdbc is not > bound in this Context"! > > -Original Message----- > From: Hamacher, Eric [mailto

RE: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2009-01-29 Thread Hamacher, Eric
d in this Context"! -Original Message- From: Hamacher, Eric [mailto:eric_hamac...@gallup.com] Sent: Thursday, January 29, 2009 9:04 AM To: Tomcat Users List Subject: RE: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context Tomcat's -Original Mes

RE: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2009-01-29 Thread Hamacher, Eric
Tomcat's -Original Message- From: news [mailto:n...@ger.gmane.org] On Behalf Of Stephen Souness Sent: Thursday, January 29, 2009 9:02 AM To: users@tomcat.apache.org Subject: Re: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context Which lib did you put your ja

Re: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2009-01-29 Thread Stephen Souness
Which lib did you put your jars in? The web app's or Tomcat's? -- Stephen Souness Hamacher, Eric wrote: Hello: This has been a truly frustrating problem. Here is what I did: Tomcat 6.0.18 JDK 1.5 u 16 Eclipse w/ WTP 3.4.1 Ojdbc14dms.jar Dms.jar I placed my drivers in lib. In web.xml, I p

RE: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2009-01-29 Thread Hamacher, Eric
..@gmx.de] Sent: Wednesday, January 28, 2009 6:17 PM To: Tomcat Users List Subject: Re: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context Hamacher, Eric schrieb am 28.01.2009 um 08:18:21 (-0600): > >type="javax.sql.DataSource"

Re: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2009-01-28 Thread Michael Ludwig
Hamacher, Eric schrieb am 28.01.2009 um 08:18:21 (-0600): > >type="javax.sql.DataSource" > maxActive="30" > maxIdle="2" > maxWait="1000" > username="username" > password="password" >

javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2009-01-28 Thread Hamacher, Eric
Hello: This has been a truly frustrating problem. Here is what I did: Tomcat 6.0.18 JDK 1.5 u 16 Eclipse w/ WTP 3.4.1 Ojdbc14dms.jar Dms.jar I placed my drivers in lib. In web.xml, I put jdbc/GFDataSource javax.sql.DataSource Container I placed the following in th

Re: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2008-04-15 Thread Mark Thomas
Roger Keays wrote: Is that the intended behaviour? Yes. If you want a realm to use a context defined datasource rather than a global one you need to set: localDataSource="true" on the realm It is documented in the howto but not the realm docs. I'll fix that now. http://tomcat.apache.org/tomcat

javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

2008-04-14 Thread Roger Keays
The following configuration gives me a javax.naming.NameNotFoundException: However, if I move the JNDI resource up it works as expected: ... Is that the intended behaviour? Cheers, Roger ---