Thanks David. The context element I'm using is taken directly from the examples. If you can tell just by looking, can you see if this looks correct for Tomcat 5.5 (otherwise I'll just use trial and error and web searching to figure it out).
Thanks, Darren <Context path="/flc" docBase="flc" debug="5" reloadable="true" crossContext="true"> <Resource name="jdbc/flc" auth="Container" type="javax.sql.DataSource" driverClassName="oracle.jdbc.OracleDriver" url="jdbc:oracle:thin:@127.0.0.1:1521:flc" username="scott" password="tiger" maxActive="20" maxIdle="10" maxWait="-1" removeAbandoned="true" removeAbandonedTimeout="180" logAbandoned="true"/> </Context> -----Original Message----- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Monday, September 11, 2006 10:03 PM To: Tomcat Users List Subject: Re: connection pooling question (posted correctly) META-INF is if you pack your web app to be a .war file. Create the file in conf/Catalina/localhost but name it after the webapp. If your webapp is in the folder foo in the webapps directory, the file would be foo.xml. Also be sure your instructions are for tomcat 5.5 as the way the JNDI resource definition is written is different from previous versions. -David Darren Hall wrote: > Hi all. > > I'm using Oracle 10g with Tomcat 5.5 and Struts 1.2.9. > > I'd like to set up connection pooling for my application. I've read the > Tomcat "HOW-TO" on setting up a JNDI Datasource for connection pooling, but > one thing confuses me - In the how-to, it states "Configure the JNDI > DataSource in Tomcat by adding a declaration for your resource to > $CATALINA_HOME/conf/server.xml. > > > > Add this in between the </Context> tag of the examples context and the > </Host> tag closing the localhost definition. If there is no such tag, you > can add one as illustrated in the Context and Host configuration > references..." However, in "The Context Container" documentation referenced > in the above article it states "Please note that for tomcat 5, unlike tomcat > 4.x, it is NOT recommended to place <Context> elements directly in the > server.xml file. Instead, put them in the META-INF/context.xml directory of > your WAR file or the conf directory" So where do I place this <Context> > element containing my resource that describes the datasource? > > > > Thanks, > > > > Darren > > > > > -- David Smith Network Operations Supervisor Department of Entomology Cornell University 2132 Comstock Hall Ithaca, NY 14853 Phone: (607) 255-9571 Fax: (607) 255-0940 --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]