Hi, The difference is between threads you spawn and threads tomcat spawns. >servlet container calls the destroy method, it must allow any threads that >are currently running in the service method of the servlet to complete
Threads that are currently running in the service methods means just that. It does NOT mean threads you spawned while in the service method. The first group tomcat will let finish before calling destroy. The latter tomcat does not have to wait for and therefore may be still running while destroy is called. Sorry if I was unclear on that before. Yoav Shapira Millennium ChemInformatics -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
