You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by "Mueller, Franz" <fr...@sapmarkets.com> on 2001/04/04 09:23:52 UTC

Question regarding autoFlush

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