Behrang,
You probably have .jar files for Hibernate that don't contain debug
information. If you want to debug the Hibernate code itself, get a
source code distribution and build it with debugging info (see
documentation for the javac ant tag), or just add the source files to
your IDE.
That said,
Richard,
This probably means database connections from a DBCP pool are being left
open. Code that opens connections from a pool must close them (using a
try/finally block), or the pool runs out of connections and things lock
up.
If you can't clean up the code, this page has a way to auto-cleanup
David,
Are you using a JDBC connection pool? I've seen Tomcat "hang" in this
way when there is a mismanaged connection pool (i.e. connections are
being left open until the pool runs out). Something to check any way...
Matt
-Original Message-
From: David Gagnon [mailto:[EMAIL PROTECTED]
Cristi,
Take look at
http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpSer
vletRequest.html
Using a combination of getRequestURL().toString() and
request.getQueryString() should give you what you're looking for.
Matt
-Original Message-
From: Kyle [mailto:[EMAIL PROTE