-1.  The patch breaks the spec.

According to JSP 2.0 spec, JSP.5.5 (p1-111),

    "If the page output was unbuffered and anything has been written to
    it, an attempt to forward the request will result in an
    IllegalStateException."
    
-Kin-man
 
> Date: Thu, 18 Mar 2004 21:05:17 +0000
> From: [EMAIL PROTECTED]
> Subject: cvs commit: 
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime 
JspWriterImpl.java
> To: [EMAIL PROTECTED]
> 
> markt       2004/03/18 13:05:17
> 
>   Modified:    jasper2/src/share/org/apache/jasper/runtime
>                         JspWriterImpl.java
>   Log:
>   - Fix bug 13499. Remove unnecssary bufferSize check
>   - Ported from TC4
>   
>   Revision  Changes    Path
>   1.10      +0 -3      
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/JspWriterImpl.
java
>   
>   Index: JspWriterImpl.java
>   ===================================================================
>   RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/JspW
riterImpl.java,v
>   retrieving revision 1.9
>   retrieving revision 1.10
>   diff -u -r1.9 -r1.10
>   --- JspWriterImpl.java      17 Mar 2004 19:23:04 -0000      1.9
>   +++ JspWriterImpl.java      18 Mar 2004 21:05:17 -0000      1.10
>   @@ -139,9 +139,6 @@
>         * Discard the output buffer.
>         */
>        public final void clear() throws IOException {
>   -        if (bufferSize == 0)
>   -            throw new IllegalStateException(
>   -                    getLocalizeMessage("jsp.error.ise_on_clear"));
>            if (flushed)
>                throw new IOException(
>                        
getLocalizeMessage("jsp.error.attempt_to_clear_flushed_buffer"));
>   
>   
>   
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to