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=12215>. 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=12215 Correction for List$jsp.java causes Nasty Jasper error Summary: Correction for List$jsp.java causes Nasty Jasper error Product: Tomcat 4 Version: 4.0 Beta 1 Platform: Other OS/Version: Other Status: NEW Severity: Blocker Priority: Other Component: Servlet & JSP API AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] All of the *$jsp.java files list$jsp.java showdetails$jsp.java deploy$jsp.java contain the following error : if (pageContext != null) pageContext.handlePageException(t); Jasper cannot compile this and you will get a HTTP500 when attempting to invoke list,showdetails,deploy thru admin interface the fix is: if (pageContext != null) pageContext.handlePageException((Exception)t); Martin Gainty 31 Aug 2002 -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>