RE: How to kill a (stucked) Tomcat thread

2008-02-01 Thread Markov.Yanko
: Wednesday, January 30, 2008 2:29 PM To: Tomcat Users List Subject: Re: How to kill a (stucked) Tomcat thread There no OOTB way to terminate a Thread. Actually, java in itself does not provide an OOTB way to kill a Thread! If the Thread is stuck processing request, your best solution is to stop

How to kill a (stucked) Tomcat thread

2008-01-30 Thread Markov.Yanko
Hi ,all The system is Tomcat 5.0.28 started as service, Win2003 . When I look at http://APPHOST/manager/status There is a thread that is obviously stucked - it's TIME column grows up and up - much more than a number written in tomcat/webapp's web.xml. I know the client who started it , and

Re: How to kill a (stucked) Tomcat thread

2008-01-30 Thread David Delbecq
There no OOTB way to terminate a Thread. Actually, java in itself does not provide an OOTB way to kill a Thread! If the Thread is stuck processing request, your best solution is to stop and restart tomcat. Only way a Thread can exit in java is to exit the run() method of the Thread. If it's a

Re: How to kill a (stucked) Tomcat thread

2008-01-30 Thread Johnny Kewl
] To: users@tomcat.apache.org Sent: Wednesday, January 30, 2008 2:23 PM Subject: How to kill a (stucked) Tomcat thread Hi ,all The system is Tomcat 5.0.28 started as service, Win2003 . When I look at http://APPHOST/manager/status There is a thread that is obviously stucked - it's TIME column grows