Apache deflate with chucked encoding

Posted by hoodoos on Stack Overflow See other posts from Stack Overflow or by hoodoos
Published on 2010-04-02T12:10:55Z Indexed on 2010/04/02 12:13 UTC
Read the original article Hit count: 364

I'm expiriencing some problem with one of my data source services. As it says in HTTP response headers it's running on Apache-Coyote/1.1. Server gives responses with Transfer-Encoding: chunked, here sample response:

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/xml;charset=utf-8
Transfer-Encoding: chunked
Date: Tue, 30 Mar 2010 06:13:52 GMT

And problem is when I'm requesting server to send gzipped request it often sends not full response. I recieve response, see that last chunk recived, but then after ungzipping I see that response is partial.

So my question is: is it common apache issue? maybe one of it's mod_deflate plugins or something? Ask questions if you need more info.

Thanks.

© Stack Overflow or respective owner

Related posts about apache

Related posts about http