You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Deadman, Hal" <ha...@tallan.com> on 2001/02/09 21:35:42 UTC

BUG: weblogic 6.0 multi-box release bug

The name property in Multibox.java gets defaulted to Constants.BEAN_KEY but
the release tag sets it to null. This causes it to bomb out in weblogic 6.0
because the name is null the second time the tag is used on a page.
Actually, I haven't tested this yet but it seems to make sense. 
 
 
    protected String name = Constants.BEAN_KEY;
 

    /**
     * Release any acquired resources.
     */
    public void release() {
 
 super.release();
 name = null;
 property = null;
 value = null;
 
    }