DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3699>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3699 A recursive function call in org.apache.naming.NamingContext Summary: A recursive function call in org.apache.naming.NamingContext Product: Tomcat 4 Version: 4.0 Release Candidate 2 Platform: All OS/Version: All Status: NEW Severity: Normal Priority: Other Component: Catalina AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] There is a recurisive call in org.apache.naming.NamingContext The function is (line 537~540): public void destroySubcontext(String name) throws NamingException { destroySubcontext(name); } It calls itself. It should be: public void destroySubcontext(String name) throws NamingException { destroySubcontext(new CompositeName(name)); }