Re: Tomcat DBCP Logging

2013-03-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Rahul, On 3/6/13 12:49 PM, Rahul Somasunderam wrote: > I'm running Tomcat 7.0.23. I've got a question about configuring > the logging of DBCP Failures. Echoing Daniel's suggestion: upgrade. > I've go this in my context xml file. > > The "path"

Re: Tomcat DBCP Logging

2013-03-06 Thread Rahul Somasunderam
Thanks Dan, The initialSize brought the logs into my catalina.out. R, rahul On Mar 6, 2013, at 2:21 PM, Daniel Mikusa wrote: > On Mar 6, 2013, at 5:07 PM, Rahul Somasunderam wrote: > >> >> On Mar 6, 2013, at 11:26 AM, Daniel Mikusa wrote: >> >>> On Mar 6, 2013, at 1:49 PM, Rahul Somasunder

Re: Tomcat DBCP Logging

2013-03-06 Thread Daniel Mikusa
On Mar 6, 2013, at 5:07 PM, Rahul Somasunderam wrote: > > On Mar 6, 2013, at 11:26 AM, Daniel Mikusa wrote: > >> On Mar 6, 2013, at 1:49 PM, Rahul Somasunderam wrote: >> >>> Hi, >>> >>> I'm running Tomcat 7.0.23. >> >> This is getting pretty old, you might want to consider upgrading. > > I

Re: Tomcat DBCP Logging

2013-03-06 Thread Rahul Somasunderam
On Mar 6, 2013, at 11:26 AM, Daniel Mikusa wrote: > On Mar 6, 2013, at 1:49 PM, Rahul Somasunderam wrote: > >> Hi, >> >> I'm running Tomcat 7.0.23. > > This is getting pretty old, you might want to consider upgrading. I will, but I don't think this has to do much with tomcat being old. I thi

Re: Tomcat DBCP Logging

2013-03-06 Thread Daniel Mikusa
On Mar 6, 2013, at 1:49 PM, Rahul Somasunderam wrote: > Hi, > > I'm running Tomcat 7.0.23. This is getting pretty old, you might want to consider upgrading. > I've got a question about configuring the logging of DBCP Failures. > > I've go this in my context xml file. > > > name="jd

Tomcat DBCP Logging

2013-03-06 Thread Rahul Somasunderam
Hi, I'm running Tomcat 7.0.23. I've got a question about configuring the logging of DBCP Failures. I've go this in my context xml file. When the username and password are correct, I have no trouble connecting and my application works as expected. However when this is wrong, I get no in

RE: DBCP Logging

2007-02-19 Thread Stephens, Daniel
out.print("" + bdsMaxWait + ""); out.print(""); out.print(""); } catch(Exception e) { e.printStackTrace(); } } -Original Message- From: Yannick Haudry [mailto:[EMAIL P

Re: DBCP Logging

2007-02-19 Thread Yannick Haudry
If your datasource is not managed through your container but application driven, I guess Lambda probe (which is a great application) will not be able to give you information about it ? Is there a way to programmatically log the number of connections in use, etc ... ? Thanks Yannick On 2/19/07, D

Re: DBCP Logging

2007-02-19 Thread David Delbecq
Lambda probe is a usefull webapplication you can deploy under tomcat and that, amongst many features, allows you to see the state of your connection pools. En l'instant précis du 02/19/07 14:40, [EMAIL PROTECTED] s'exprimait en ces termes: > Hello List, > > I've configured DBCP on my Tomcat 5.5.20

DBCP Logging

2007-02-19 Thread news
Hello List, I've configured DBCP on my Tomcat 5.5.20 Installation. This runs great and I'm really happy with it until it comes to logging and/or monitoring. What do I have to do if I want to know the state of the connection pool? How can I see how many connections are currently in use? Or -