RE: DBTags and connection pooling, jndi, etc.

2001-12-12 Thread Bill Moss
Using the web.xml and poolman.xml from your original post, I get: javax.servlet.ServletException: java.sql.SQLException: No suitable driver I'm using Sybase and jconn2.jar (which I've placed in every conceivable location) with Tomcat 4.0. I switched from Resin because I found deploying webapps

RE: DBTags and connection pooling, jndi, etc.

2001-12-12 Thread Wim Bervoets
Hi Bill, I got it working: Resin 2.0.2 / DBTAGS / PoolMan There are a few things you have to do to get it working: In the DBTags source: ConnectionTag.java: In the doEndTag function add Class.forName(_driver).newInstance(); like this: if (_driver != null) { Class.forName(_driver)

DBTags and connection pooling, jndi, etc.

2001-12-12 Thread Bill Moss
How does one configure Tomcat & DBTags to use a pool manager like Poolman? There were a few posts about this but nothing concrete. Is anyone pooling DBTags connections? I'd like at least to pool and ideally to pool using a jndiName... Any configuration on basic datasource or jndi pooling would