connection-leaks

How to detect SqlServer connection leaks in a ASP.net applications ?

I'm currently doing some GUI testing on a ASP.net 2.0 application. The RDBMS is SQL Server 2005. The host is Win Server 2003 / IIS 6.0. I do not have the source code of the application because it was programmed by an external company who's not releasing the code. I've noticed that the application performs well when I restart IIS but a...

How to debug leaking connections in an ASP.NET 2.0 Web Services application?

I have an app, which is a bunch of c# web services sitting on top of ASP.NET 2.0 in IIS7 on Win2k3. Following the last release, we keep getting connection timeouts. A quick investigation using Perfmon confirmed that our application is leaking connections. However, there have been so many code changes in the last release, that it is r...

How to check the Database Connection leakage in J2EE application ?

Is there anyway to check the Connection leakage in J2EE application ? The application is running on my local machine. It uses MySQL database. User Enters his details into the Database. In my opinion Connection leakage means not closing the Connection object properly. I am creating too many Database connections in my application. I want...