Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3578322 By: andrewfannin
It looks like this issue is brought on by the combination of wrapping the ServletResponse in a displaytag.filter.BufferedResponseWrapper(ResponseOverrideFilter) and using a <jsp:include path='url.do' flush='true' /> in the requested page. I haven't had time to fully investigate, but the short answer is merely remove " flush='true' " (flush='false' is appearently not supported) from any jsp:includes on the page or any included pages. I have not verified, but setting the tiles:insert flush attribute should work as well : <tiles:insert defintion="MyTilesDef" flush="false" /> ref: <jsp:include> flush attribute (from spec): "The flush attribute controls flushing. If true, then, if the page output is buffered and the flush attribute is given a true value, then the buffer is flushed prior to the inclusion, otherwise the buffer is not flushed. The default value for the flush attribute is false." Displaytag 1.1 seems to use the same code; Does anyone have any insight to the advantages/disadvatages of setting flush='true', as most examples ect. seem to set flush to true. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=249318 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ displaytag-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/displaytag-user

