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=14798>. 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=14798 Using jspDestroy for tag pool cleanup Summary: Using jspDestroy for tag pool cleanup Product: Tomcat 4 Version: 4.1.12 Platform: PC OS/Version: Windows NT/2K Status: NEW Severity: Critical Priority: Other Component: Catalina AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Hi Jakarta Team, Looks as if in Tomcat 4.1.x you are using jspDestroy() to do tag pool cleanup. This cleanup should probably be placed in a destroy() method. Basically, my JSP contains the following (I can send you a WAR file with the test code if you email me): <%@ taglib uri="/WEB-INF/tlds/bug-taglib.tld" prefix="test" %> <!-- Should be perfectly legal. --> <%! public void jspDestroy() { System.out.println("In jspDestroy"); } %> <test:doLittle /> which produces two jspDestroy's in the generated servlet. The extra jspDestroy is: public void jspDestroy() { _jspx_tagPool_test_doLittle.release(); } And of course, with two jspDestroy methods, the code does not compile. Thanks, Larry Brown [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
