DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=32040>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=32040 Tomcat periodically hangs [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2004-11-03 15:19 ------- Chances are your code or one of the libraries it uses is spawning non-daemon threads and not terminating them appropriately. The VM and Tomcat can't do this for you. The reason your Swing app works is that it makes a System.exit call (most likely) when exiting. If you add such a call to a ServletContextListener's contextDestroyed method, you'll get around the problem you see, but it's just a band-aid. This issue has been explained on the tomcat- user list numerous times. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]