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=13223>.
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=13223

JSP pages in XML syntax do not compile properly

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From [EMAIL PROTECTED]  2002-10-03 18:43 -------
1. The first test case is not a valid XML document.  XML disallows another tag
in the value for an attribute.  For instance, this is illegal:

        <foo value='<bar/>' />

Therefore you cannot use <jsp:getProperty> as the attribute to <td>

2. Spec is clear about only supporting expressions in custom tags and standard
actions, but not in other tags.  This 'hole' has been plugged in JSP2.0, which
Tomcat 5 implements.  You can now use

        <td >
            <jsp:attribute name="value:>
                <jsp:expression>foo</jsp:expression>
            </jsp:attribute>
        </td>
to specify an expression as the attribute value.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to