Apache gzip with chucked encoding

Posted by hoodoos on Server Fault See other posts from Server Fault or by hoodoos
Published on 2010-04-02T12:16:47Z Indexed on 2010/04/02 12:23 UTC
Read the original article Hit count: 382

Filed under:
|

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.

© Server Fault or respective owner

Related posts about apache

Related posts about mod-gzip

  • Apache gzip with chucked encoding

    as seen on Server Fault - Search for 'Server Fault'
    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:… >>> More