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=16079>. 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=16079 Jasper incorrectly flags <jsp:attribute> nested within an <jsp:element> element as an error. Summary: Jasper incorrectly flags <jsp:attribute> nested within an <jsp:element> element as an error. Product: Tomcat 5 Version: Nightly Build Platform: All OS/Version: All Status: NEW Severity: Major Priority: Other Component: Jasper2 AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Given the following JSP 2.0 document: -------------------------------------------- <?xml version="1.0"?> <root xmlns:jsp="http://java.sun.com/JSP/Page"> <jsp:directive.page contentType="text/plain" /> <jsp:element name="hello"> <jsp:attribute name="world"> greetings </jsp:attribute> <jsp:body>Hello World</jsp:body> </jsp:element> </root> --------------------------------------------------- The following error message is generated: "jsp:attribute must be a sublement of a standard or custom action" The interesting thing about the error message is that the line that it's complaining about is the <root> element with the namespace declaration. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
