https://issues.apache.org/bugzilla/show_bug.cgi?id=37402
--- Comment #6 from Graham Leggett <[email protected]> 2009-09-12 16:49:20 PDT --- There are some underlying issues caused by the way the server currently works that make this a difficult problem to solve. Right now today, the server goes to some effort to ensure that a body is read from the browser once, and once only. If the body were to be read twice, the next browser request would be read in and interpreted as a body instead, or if there is no next request, the request would hang waiting for data from the browser that the browser has no intention of sending. This has been addressed on trunk through the kept body filter, which attempts to set aside the body up to some limit just once, and then "caps" the input filter stack, allowing you to read the same saved body over and over again in subrequests, without ever having to worry that the browser be read from more than once. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
