Bug 6932

Summary: AttributesTag does not have a getValue() method
Product: Taglibs Reporter: Ron Durham <rwdurham>
Component: Page TaglibAssignee: Tomcat Developers Mailing List <dev>
Status: CLOSED FIXED    
Severity: major    
Priority: P3    
Version: 1.0B1   
Target Milestone: ---   
Hardware: PC   
OS: other   

Description Ron Durham 2002-03-06 19:14:26 UTC
This code should iterate through ALL Page Scope Attributes and print out both 
the name (attribute id) and the value associated with it. 

<page:attributes id="loop">
   Name: <jsp:getProperty name="loop" property="name"/>
   Value: <jsp:getProperty name="loop" property="value"/>
</page:attributes>

The AttributesTag Tag class is stored as the "loop" object in the Session.
    public final int doStartTag() throws JspException {
        ...

	pageContext.setAttribute(id,this);
    }


But the AttributesTag class does not have the getValue() method to retrieve the 
value from.
Comment 1 Glenn Nielsen 2002-04-04 18:51:50 UTC
Thanks for reporting this.  It has been fixed and will be in the next nightly
build.