since a few days, I try to replace Tomcats dbcp by Oracle's connection pool. That's required, because a web application uses some Oracle specific features.
Currently, the JNDI datasoure is configured that way:
<Resource
name="jdbc/oracle"
driverClassName="oracle.jdbc.OracleDriver"
auth="Container"
type="oracle.jdbc.pool.OracleConnectionPoolDataSource"
factory="oracle.jdbc.pool.OracleDataSourceFactory"
user="*****"
password="*****"
url="*****"
/>
When I take a connection from the pool, it's still of type org.apache.commons.dbcp.PoolingDataSource.PoolGuardConnectionWrapper
Can someone give me a hint, what's going wrong here?
Thanks in advance,
Markus