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=5598>. 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=5598 (JSP Problem) RequestDispatcher doesn't include HTML output in place [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2002-01-02 15:31 ------- The javax.servlet.jsp.JspWriter class buffers and sends output (JSP.8.3), so it is not surprising that including another page using RequestDispatcher object would produce an out-of-order output. You should either 1) add "out.flush();" in your scriplet to explicitly flush the data in the buffer; or 2) add a <%@ page buffer="none" %> to specify no buffering. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>