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=12578>. 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=12578 JSP forward not working OK from JSP include [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2002-09-12 15:30 ------- See section 8.4 of the Servlet 2.3 spec: "If output data exists in the response buffer that has not been committed, the content must cleared before the target servlet’s service method is called. " and "Before the forward method of the RequestDispatcher interface returns, the response must be committed and closed by the servlet container." This means when a jsp:forward is performed - the existing output buffer is cleared. Then after a jsp:foward is performed, the response is closed. Any other code on that JSP will not be able to write to the response. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>