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;
 
    }

Reply via email to