Re: Discover the Datasource connection pool maxSize.

2010-11-03 Thread Pid
On 03/11/2010 12:15, GF wrote: > Hello. > i've not access to Tomcat's server.xml where the sysadmins defined a resource: > > maxActive="65" maxIdle="30" maxWait="5" name="myDatasource" > type="javax.sql.DataSource" url="jdbc:." /> > > I wish to discover from a web appplication deployed on th

Re: Discover the Datasource connection pool maxSize.

2010-11-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 GF, On 11/3/2010 7:15 AM, GF wrote: > i've not access to Tomcat's server.xml where the sysadmins defined a resource: > > maxActive="65" maxIdle="30" maxWait="5" name="myDatasource" > type="javax.sql.DataSource" url="jdbc:." /> > > I wish to dis

RE: Discover the Datasource connection pool maxSize.

2010-11-03 Thread Rob Gregory
aramAsBoolean("pool.test.on.borrow")); tds.setTestOnReturn(Config.getParamAsBoolean("pool.test.on.return")); tds.setTestWhileIdle(Config.getParamAsBoolean("pool.test.while.idle")); > -Original Message- > From: GF [mailto:gan...@gmail.com] > Sent

Discover the Datasource connection pool maxSize.

2010-11-03 Thread GF
Hello. i've not access to Tomcat's server.xml where the sysadmins defined a resource: I wish to discover from a web appplication deployed on that Tomcat what's the configuration "maxActive" for myDatasource. Is there a way to discover it? Thank you. ---