https://issues.apache.org/bugzilla/show_bug.cgi?id=56010
--- Comment #1 from Eugene Chung (TmaxSoft) <bluewolf.ch...@gmail.com> --- Created attachment 31206 --> https://issues.apache.org/bugzilla/attachment.cgi?id=31206&action=edit Test Source I suggest that org.apache.jasper.runtime.PageContextImpl needs to check if buffer size is JspWriter.DEFAULT_BUFFER and adjust it to default. org.apache.jasper.runtime.PageContextImpl#initialize(..) if (bufferSize == JspWriter.DEFAULT_BUFFER) { bufferSize = Constants.DEFAULT_BUFFER_SIZE; } if (this.baseOut == null) { this.baseOut = new JspWriterImpl(response, bufferSize, autoFlush); } else { this.baseOut.init(response, bufferSize, autoFlush); } -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org