If I GZip the a POST request form data, will a HTTP server decompress it, or it only works the other way (server -> client)?
|
|
|
|
|
|
|
What web server are you using? I'm assuming your doing the POST from within a program. While it's possible send gzip'd data to a server, browsers don't do it, because the server doesn't usually advertise what encodings it accepts. You can see what a server accepts with an OPTIONS command:
However, if you control both the server and the client, you can send whatever data stream you like. For example, Mercurial compresses everything in both directions, but doesn't rely on the web server for compression/decompression. |
||
|
