Hello
I use servlet that stores and cleans up reference to remote object in a remote object registry in corresponding init() and destroy() methods.
I clean up all my threads correctly.
But unfortunately Tomcat 4 does not want to shutdown .
Using Tomcat's "debug" command, I discovered the additional threadgroup
named "RMI Runtime"
threadgroups
1. (java.lang.ThreadGroup)0x54e system
2. (java.lang.ThreadGroup)0x54f main
3. (java.lang.ThreadGroup)0x769 RMI Runtime
>
Is there any method to finish the threadgroup in order to allow Tomcat to shutdown ?
Thank you.