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=3941>. 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=3941 PrinWriter.flush() HttpServletResponse.flushBuffer() do not work [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2001-10-04 09:21 ------- If a browser works correctly, but your client fails, then it's a client problem (if the flush didn't work correctly on the server side, there would be no way for the browser to display the data either). In your particlar case, Catalina will return chunked output, which may cause the problem when using HttpURLConnection to read the data (probably the buffering you're talking about happens here). You can disable chunking on the server side (at least with the current version of the connector) by using the allowChunking attribute (set its value to false).