Re: JNDI Datasource Problem

2007-04-02 Thread Rashmi Rubdi
If you try the example exactly without any variations, it should work. It worked for me. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

Re: JNDI Datasource Problem

2007-04-02 Thread Melih Onvural
I tried it both ways. Once my resource wasn't defined globally at all, but it was defined under the Context. Next, my resource was defined only globally and not under the context. Is that the problem? Should it be global and under the context? I'm using the test.jsp file and the standard-taglibs.j

Re: JNDI Datasource Problem

2007-04-02 Thread Rashmi Rubdi
Also what does your JDBC code look like? (Please post small relevant snippets) - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JNDI Datasource Problem

2007-04-02 Thread Rashmi Rubdi
Is the Context associated with a Host? I tried and example as shown here: http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html and it works fine. I think the same instructions work for Tomcat 5.5.x as well. My server.xml

Re: JNDI Datasource Problem

2007-04-02 Thread Melih Onvural
Also, the error message itself is: javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: No driver found for jdbc/TestDB" org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:276) and I have mysql-c

RE: JNDI Datasource Problem

2006-03-03 Thread lee hwaying
Shareable ... 3 remove the portion from server.xml (as we don't need it,application specific context.xml works) 4 remove the resourcelink from ..\conf\Catalina\localhost\...xml From: "Wang, Hansen" <[EMAIL PROTECTED]> Reply-To: "Tom

RE: JNDI Datasource Problem

2006-02-27 Thread Wang, Hansen
Two problems: 1. In ResourceLink, the value for attribute "golbal" should be "jdbc/galleryDB" instead of "galleryDB". 2. The factory classname is wrong if you are using tomcat5's naming-factory-dbcp.jar. You can just remove that line and the default is used. -Original Message- From: lee

Re: JNDI Datasource Problem

2006-02-25 Thread Vinny
s R <[EMAIL PROTECTED]> wrote: > > > > > From: umesh balasubramaniam [mailto:[EMAIL PROTECTED] > > > Subject: Re: JNDI Datasource Problem > > > > > > Try using connector/J and the configuration below: > > > > > > > > >

Re: JNDI Datasource Problem

2006-02-25 Thread umesh balasubramaniam
Connector/J is the newer mysql driver. http://www.mysql.com/products/connector/j/ Umesh On 2/25/06, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > > From: umesh balasubramaniam [mailto:[EMAIL PROTECTED] > > Subject: Re: JNDI Datasource Problem > > > &

RE: JNDI Datasource Problem

2006-02-25 Thread Caldarale, Charles R
> From: umesh balasubramaniam [mailto:[EMAIL PROTECTED] > Subject: Re: JNDI Datasource Problem > > Try using connector/J and the configuration below: > > > No idea what connector/J is, but the question specifically pertained to Tomcat 5.5, and the

Re: JNDI Datasource Problem

2006-02-25 Thread lee hwaying
may i know how to use connetor/J? From: umesh balasubramaniam <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List" To: Tomcat Users List Subject: Re: JNDI Datasource Problem Date: Fri, 24 Feb 2006 21:55:15 -0800 Try using connector/J and the con

Re: JNDI Datasource Problem

2006-02-24 Thread umesh balasubramaniam
Try using connector/J and the configuration below: factory org.apache.commons.dbcp.BasicDataSourceFactory driverClassName com.mysql.jdbc.D

Re: JNDI Datasource Problem

2006-02-20 Thread Marc Richards
> enableLookups="false" > redirectPort="8443" protocol="AJP/1.3" /> > > > > > > > > > > > > > > > > > > > className="org.apache.catalina.realm.UserDataba

Re: JNDI Datasource Problem

2006-02-20 Thread Mark Whitby
----- Original Message ----- From: "Marc Richards" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Monday, February 20, 2006 8:55 PM Subject: Re: JNDI Datasource Problem >I didn't see any mention of the Tomcat

Re: JNDI Datasource Problem

2006-02-20 Thread Marc Richards
I didn't see any mention of the Tomcat version here, but in 5.5 the part of the config is no longer used. All paramters go in the tag with name="value" format just like name and auth from your example below. i.e. maxIdle="30". -marc --- Mark Whitby <[EMAIL PROTECTED]> wrote: > Hey guys, > >

Re: JNDI Datasource Problem

2006-02-20 Thread Markus Schönhaber
Rose, Greg wrote: > If you look at the resulting link when you click on CONTEXT > http://tomcat.apache.org/tomcat-5.5-doc/config/context.html > > It gives you several options as to setting up your context. They all > refer to the context.xml file, not the Server.xml file. > > I have found that pla

RE: JNDI Datasource Problem

2006-02-20 Thread Rose, Greg
, February 20, 2006 7:43 AM To: Tomcat Users List Subject: RE: JNDI Datasource Problem > From: Rose, Greg [mailto:[EMAIL PROTECTED] > Subject: RE: JNDI Datasource Problem > > If it is 5.5.x, you can not alter the Server.xml file. That's not correct. It is strongly recommended to p

RE: JNDI Datasource Problem

2006-02-20 Thread Rose, Greg
into my application's META-INF directory works for me. That is the last option given in the help. -Original Message- From: Mark Whitby [mailto:[EMAIL PROTECTED] Sent: Monday, February 20, 2006 7:37 AM To: Tomcat Users List Subject: Re: JNDI Datasource Problem Yeah it's 5.5.15. It

RE: JNDI Datasource Problem

2006-02-20 Thread Caldarale, Charles R
> From: Rose, Greg [mailto:[EMAIL PROTECTED] > Subject: RE: JNDI Datasource Problem > > If it is 5.5.x, you can not alter the Server.xml file. That's not correct. It is strongly recommended to put tags in either the META-INF directory of the webapp or in conf/Catalina/[hostna

Re: JNDI Datasource Problem

2006-02-20 Thread Mark Whitby
ht as it says here: http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html Mark - Original Message - From: "Rose, Greg" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Monday, February 20, 2006 12:33 PM Subject: RE: JNDI Datasource Prob

RE: JNDI Datasource Problem

2006-02-20 Thread Rose, Greg
is started. -Original Message- From: chuanjiang lo [mailto:[EMAIL PROTECTED] Sent: Monday, February 20, 2006 7:25 AM To: Tomcat Users List Subject: Re: JNDI Datasource Problem i think you would need to change the context.xml? On 2/20/06, Mark Whitby <[EMAIL PROTECTED]> wrote: &

Re: JNDI Datasource Problem

2006-02-20 Thread chuanjiang lo
i think you would need to change the context.xml? On 2/20/06, Mark Whitby <[EMAIL PROTECTED]> wrote: > > Hey guys, > > Thanks for the help with the previous problem I had, I've managed to solve > them now thanks to your help. But now I'm having a problem with setting up > a DataSource connection.

Re: JNDI Datasource Problem

2006-02-19 Thread Mike Sabroff
al Message - From: "Mark Whitby" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, February 19, 2006 9:34 PM Subject: Re: JNDI Datasource Problem I've checked the documentation and yes I was reading the 5.0 version not the 5.5 one! Ho

Re: JNDI Datasource Problem

2006-02-19 Thread Mark Whitby
correct. Mark - Original Message - From: "Mark Whitby" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, February 19, 2006 9:34 PM Subject: Re: JNDI Datasource Problem I've checked the documentation and yes I was reading the 5.0 version not the 5.5 on

Re: JNDI Datasource Problem

2006-02-19 Thread Mark Whitby
bc:mysql://localhost:3306/fyptest?autoReconnect=true"/> Any ideas what's wrong now? Mark - Original Message - From: "Len Popp" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, February 19, 2006 9:22 PM Subject: Re: JNDI Datasource Pr

Re: JNDI Datasource Problem

2006-02-19 Thread Len Popp
d in the Tomcat set up pages. So would it make any difference > removing one of these or as it's ignored does it not matter? > > Mark > > - Original Message - > From: "Bill Barker" <[EMAIL PROTECTED]> > To: > Sent: Sunday, February 19, 2006 8:40 PM &

Re: JNDI Datasource Problem

2006-02-19 Thread Mark Whitby
PROTECTED]> To: Sent: Sunday, February 19, 2006 8:40 PM Subject: Re: JNDI Datasource Problem Since you have , this suggests you are using some version of 5.5. In this case, the is ignored (you set them as attributes on the tag). "Mark Whitby" <[EMAIL PROTECTED]> wrot

Re: JNDI Datasource Problem

2006-02-19 Thread Bill Barker
name="jdbc/TestDB" >global="jdbc/TestDB" >type="javax.sql.DataSource" auth="Container" /> > > > > > > Any further suggestions? > > Mark > - Original Message - > From: "Parsons Techn

Re: JNDI Datasource Problem

2006-02-19 Thread Mark Whitby
le (rs.next()) { out.println(rs.getString("foo")+""); } rs.close(); conn.close(); %> - Original Message - From: "Mark Whitby" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, February 19, 2006 7:26 PM Subject: Re: JNDI Data

Re: JNDI Datasource Problem

2006-02-19 Thread Mark Whitby
gestions? Mark - Original Message - From: "Parsons Technical Services" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, February 19, 2006 7:02 PM Subject: Re: JNDI Datasource Problem Look up resource link. It goes in the context.xml Also only put th

Re: JNDI Datasource Problem

2006-02-19 Thread Parsons Technical Services
Look up resource link. It goes in the context.xml Also only put the jar file in the common/lib and no where else. - Original Message - From: "Mark Whitby" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Sunday, February 19, 2006 12:53 PM Subject: JNDI Datasource Problem Hey guys,