You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by John Huong <ja...@yahoo.com> on 2003/07/11 20:23:00 UTC

Content-Encoding bug in mod_deflate still exists?

Based on
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9222

mod_deflate shouldn't do anything when let's say my
PHP script outputs with the header;

Content-Encoding: deflate

Unfortunately, I've noticed that it still does it
occasionally.

Here's part of the transmission that I've managed to
log.
Begin client request:
POST http://cimserv.1stsi.com/fans/dsasoapserver.php
Accept: text/xml
Accept: multipart/*
Accept-Encoding: deflate
User-Agent: SOAP::Lite/Perl/0.55
Content-Encoding: deflate
Content-Length: 327
Content-Type: text/xml; charset=utf-8
SOAPAction: "http://cimserv#check"

<snip out contents of requests>

Begin server response:
HTTP/1.1 200 OK
Connection: Close
Date: Fri, 11 Jul 2003 16:29:13 GMT
Server: NuSOAP Server v0.6.4
Vary: Accept-Encoding
Content-Encoding: deflate, gzip
Content-Length: 267
Content-Type: text/xml; charset=UTF-8
Client-Date: Fri, 11 Jul 2003 16:31:04 GMT
Client-Peer: 172.16.104.14:80
Status: 200 OK
X-Powered-By: PHP/4.3.2

<snip out the contents of response>


One thing is for sure, I definitely didn't add ",
gzip" to the server's response. Strange thing
though... it happens on and off.



__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

Re: Content-Encoding bug in mod_deflate still exists?

Posted by André Malo <nd...@perlig.de>.
* John Huong wrote:

> Based on
> http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9222
> 
> mod_deflate shouldn't do anything when let's say my
> PHP script outputs with the header;

<snip>

Please do not crosspost in bugzilla and dev@. That makes it much harder to
keep track on the discussion.

(I've replied in bugzilla now).

nd