Hi all,
If the page-directive autoflush is set to "true"
<%@ page autoFlash="true" %>
and when the JSP uses a body-aware Tag
class MyTag extends BodyTagSupport {...}
the JSP-environment will generate a BodyContent ( which extends JspWriter)
out = pageContext.pushBody();
This object does not inheritate the page-directive autoFlush.
Is this conform to the JSP-specification or is this a bug ?
Is there any way to programmatically set this attribute for all the
sub-writers
(for a specific writer ) ?
Thanks in advance,
fm