Thanks paul.
Our application is built using JDBC calls for DB operations. We have included a third party jar file which will invoke an
ejb deployed on a remote location. The ejb call will return results. Those results are saved by classes included in the third party jar. third party jar file is using hibernate to save the results in db. same db is accessed by our application using JDBC.
This approach was implemented in another project of my client and it was causing the database to hang.
What I feel is that those application might be having issue with the connections left opened either from hibernate/JDBC calls.
If you handle connections properly, then it should not have any issues.
thanks again,
Neeraj