at the page directive you have

autoFlush="false" (not the default)

and the buffer="8kb" (the default) is too low !!! 
So you generate more html code ( more bytes ) than it fits into the tomcat
"page buffer" and because of you disabled autoFlush tomcat isn't allowed to
write the buffer to the client and afterwards generate more html code.

set buffer higher, e.g.:

buffer="64kb" (for example) 

or autoFlush="true"


-----Ursprüngliche Nachricht-----
Von: Grzegorz Skorupa [mailto:[EMAIL PROTECTED]]
Gesendet: Montag, 26. Februar 2001 12:24
An: [EMAIL PROTECTED]
Betreff: JSP Buffer overflow error


Hello,

I have Tomcat 3.2.1 installed. JSP including <select> with many <options> 
inside couses an error:

java.io.IOException: Error: JSP Buffer overflow at 
org.apache.jasper.runtime.JspWriterImpl.bufferOverflow(JspWriterImpl.java:19
6)
at org.apache.jasper.runtime.JspWriterImpl.write(JspWriterImpl.java:371)
at org.apache.jasper.runtime.JspWriterImpl.write(JspWriterImpl.java:381)
at org.apache.jasper.runtime.JspWriterImpl.print(JspWriterImpl.java:512)

Does anyone could help?
TIA

Grzegorz

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

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

Reply via email to