The following reply was made to PR mod_jserv/4908; it has been noted by GNATS.
From: Marc Slemko <[EMAIL PROTECTED]> To: Doug Herbert <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED] Subject: Re: mod_jserv/4908: Apache is adding bytes to large servlet responses, ( > 500 bytes ) Date: Wed, 25 Aug 1999 23:19:45 -0700 (PDT) On 26 Aug 1999, Doug Herbert wrote: > ie. the following are response frames to the remote client > > 1st Frame ( from Apache to client ) > HTTP/1.1 200 OK > Date ...etc... > > 2nd Frame > 19\n\rabcdefghijklmnopqrs\n\r > > 3rd Frame > 7\n\rtuvwxyz\n\r Is the client making a HTTP/1.1 request? If so, then this looks a whole lot like a chunked response. Check the response headers to see if there is a chunked encoding header. If the client makes a 1.1 request, then it must be able to understand chunked encodings, otherwise it shouldn't make a 1.1. request.