You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2007/01/30 23:16:52 UTC

DO NOT REPLY [Bug 40719] - Tomcat 5.5.20 Internal error/crash

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=40719>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=40719





------- Additional Comments From bhuiskamp@maplesoft.com  2007-01-30 14:16 -------
I have seen this exception when there is too much data for the HTTP header (e.g
too many cookies or large amount of data in the cookies). This was with Tomcat
5.0.28 using Java 1.5.0_11.

The code in 
  org.apache.coyote.http11.InternalOutputBuffer.write()
does not check the number of bytes written to the byte buffer 'buf'. 

As a workaround, try editing the http connector 
   <Connector port="8080" ...> 
in the server.xml configuration file. Add the attribute to this tag
   <Connector port="8080" ...
              maxHttpHeaderSize="8192" />
or some other large number (default size is 4096 for Tomcat 5.0) to see if your
web app works.



-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org