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=5905>. 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=5905 JSP Document not correctly processed Summary: JSP Document not correctly processed Product: Tomcat 4 Version: 4.0.1 Final Platform: Other OS/Version: Other Status: NEW Severity: Major Priority: Other Component: Jasper AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The following JSP Document : <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"> <jsp:directive.page language="java" session="true" errorPage="none" isErrorPage="false" /> <jsp:text> <![CDATA[<html>]]> </jsp:text> <jsp:text> <body> Hello <jsp:expression>1+2+3+4</jsp:expression> <jsp:scriptlet>out.println("World");</jsp:scriptlet> </body> </jsp:text> <jsp:text> <![CDATA[</html>]]> </jsp:text> </jsp:root> produces the following output : <html> <body >10World Hello </body> </html> Notice that the <body> tag becomes <body > and that the expression and scriptlet tags appears before the html text. JFH -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>