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=16001>. 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=16001 Tag.release() not invoked ------- Additional Comments From [EMAIL PROTECTED] 2003-01-13 18:52 ------- The following is regarding bug 16031: I assume you are referring to the tag handler's release() method when you talk about resetting its state? Note that according to the spec, the release() method is guaranteed to be called on any tag handler, "but there may be multiple invocations on doStartTag() and doEndTag() in between." Therefore, your tag handler should not rely on its release() method to reset any private invocation-specific state. This state is best initialized in doStartTag(). This means that in your specific example, you should clear your "key" and "value" objects in your tag handler's doStartTag() method. See important tips for tag-handler lifecycle management at http://jakarta.apache.org/taglibs/guidelines.html -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>