Try a resourcelink in your context for the webapp. Eg. <Context cachingAllowed="true" docBase="yourwebappname.war" debug="99" path="/yourwebappname" privileged="false" reloadable="true" swallowOutput="true"> <ResourceLink name="jdbc/globalname" global="jdbc/globalname" type="javax.sql.DataSource"/> </Context>
-----Original Message----- From: Robert Einsle [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 9:02 AM To: Tomcat Users List Subject: Access zu an jdbc Datasource Hello List, I'm trying zu connect to an JDBC Datasource connecting to an Postgres Database. But it will not work. I tryed it link the Documentation, adding the Datasource under GlobalNamingResources, and add the another in web.xml. In ProgrammSource: --- cut --- Context initContext = new InitialContext(); Context envContext = (Context)initContext.lookup("java:/comp/env"); DataSource ds = (DataSource)envContext.lookup("jdbc/postgres"); Connection conn = ds.getConnection(); --- cut --- The another is link the description in the JDBC Howto. While ds.getConnection() i recieved an Exception, cannot connect to Datasource name ''. Searchin a little bit, i cannot find the Environment for the Postgresdatabasesource. Does anyone has an Idea / Howto i can lokk about my Problem?? Thanks for Help \Robby --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
