On Wed, Apr 22, 2009 at 12:58 PM, JT <jltoo...@gmail.com> wrote: > My application context.xml file looks like this. > <Context> > <Context antiJARLocking="true" antiResourceLocking="true"/> > <Resource name="jdbc/xxx” auth="Container" type="javax.sql.DataSource" > driverClassName=”oracle.jdbc.driver.OracleDriver” > url=”jdbc:oracle:thin:@.../> > </Context>
I'm surprised Tomcat even starts with that -- Context elements can't be nested. Try: <Context antiJARLocking="true" antiResourceLocking="true"> <Resource name="jdbc/xxx” auth="Container" type="javax.sql.DataSource" driverClassName=”oracle.jdbc.driver.OracleDriver” url=”jdbc:oracle:thin:@.../> </Context> -- Hassan Schroeder ------------------------ hassan.schroe...@gmail.com --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org