Hello,
I try to create a program that decompresses a gzip encoded response from a webserver using the Xceed Streaming Compression Library. The response of the webserver looks like this:
Fertig: HTTP/1.1 200 OK
Date: Fri, 03 Mar 2006 08:35:06 GMT
Server: Apache/1.3.33 (Unix) mod_gzip/1.3.26.1a
Last-Modified: Wed, 16 Nov 2005 01:14:40 GMT
Connection: close
Content-Type: text/html
Content-Encoding: gzip
Content-Length: 2001
Μçw^“ٖϯ~¾8a§W?œ³‹— ( + more of that binary stuff)
But which format is this? Do I have to convert the body into a binary array or how could I decompress it? My program raises errors like "The header size doesn't match with the actual size".
Thanks,
Thomas