"Deadman, Hal" wrote:
> I added these three lines to the LinkTag.java release() method and
> the parameter doesn't show up on the second link anymore. Does this
> problem occur on other App servers? paramId = null;
> paramScope= null;
> paramProperty = null;
Good catch.
You actually need four of them to be complete -- paramName also needs to
be reset.
This bug will only show up on containers that recycle tag instances,
which the spec allows you to do for performance reasons. Tomcat does
not currently do this, but it appears that Weblogic does.
Will be fixed in tonight's nightly build.
Craig