Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If webserver can send gzip response, why can't browser sent gzip request?

share|improve this question

6 Answers

up vote 29 down vote accepted

The client and server have to agree on how to communicate; part of this is whether the communication can be compressed. HTTP was designed as a request/response model, and the original creation was almost certainly envisioned to always have small requests and potentially large responses. Compression is not required to implement HTTP, there are both servers and clients that don't support it.

HTTP compression is implemented by the client saying it can support compression, and if the server sees this in the request and it supports compression it can compress the response. To compress the request the client would have to have a "pre-request" that actually negotiated that the request would be made compressed OR it would have to require compression as a supported encoding for ALL requests.

share|improve this answer

A client can't know in advance that a server would understand a gzipped request, but the server can know that the client will accept one.

share|improve this answer
3  
Not true. Content-Encoding is a permissible header for the client to supply. The RFC says: "If the content-coding of an entity in a request message is not acceptable to the origin server, the server SHOULD respond with a status code of 415 (Unsupported Media Type)." - per Nick Johnson – Pacerier Jul 4 '12 at 6:59
2  
What you're saying is a little different to what I was driving at. You can try to send a gzipped request as you suggest, but there's no way of knowing beforehand that the server will accept it (without talking to the server). That said, your point is well made: if you try to send a gzipped request, you may find the server can support it. – Paul Dixon Jul 4 '12 at 9:43
1  
There are a lot of places where you know in advance that the server supports that. For example and mobile app talking to the backend. – Guillermo Jul 10 '12 at 13:24
1  
Is there a list of servers that actually support a gzipped request? – Eric Dec 27 '12 at 1:52
are there any browsers that would support it? – boomhauer May 15 at 14:38

It could, provided it could guarantee that the server would accept it. This might mean using an OPTIONS request.

There are a lot of things that web browsers could do (for example, pipelining) that they don't do. Web browser developers consider the compatibility implications of a change.

In a heterogeneous environment, there are a lot of different web servers and configurations. Making a change to the way a client works could break some of them.

Perhaps only 1% of servers might accept gzipped requests, but perhaps some of those advertise that they do, but cannot correctly accept it - so users would be denied from uploading files to those sites.

Historically there have been a lot of broken client / server implementations - for a long time, gzipped responses were broken in major web browsers (thankfully those are now mostly gone).

So you'd end up with blacklists of user-agents or servers (or domain names) where those options were automatically turned off, which is nasty.

share|improve this answer

Because it doesn't know that the server can accept it. An HTTP transaction has a single request sent by the client followed by a response. One of the things the client sends is what encoding/compression it can support. The server can then decide how to compress the response. The client does not have this luxury.

share|improve this answer

If you're writing a web application, I'm assuming that you're in control of what is sent to the client and what is sent back from the client.

It would be easy enough to write a gzip implementation in javascript, that compresses the post data being sent to the server. The server could have a filter (j2ee term), that knows client data is sent compressed, this filter decompresses the data and then passes the data to the servlet (or action classes in Struts) that read the data as normal e.g. request.getParameter(...).

This seems perfectly logical and do-able if you're in control. As other posts mention, you couldn't rely on the browser to do this automatically, but since you're writing the web pages, you can get the browser to do the compression you're after (with a little work).

Andy.

share|improve this answer

Why should it? The requests are usually so small that compression would

  1. probably enlarge it and
  2. take more time than it takes to transfer the uncompressed request.
share|improve this answer
10  
Not always. Consider a file upload. – Yuliy Jan 8 '09 at 16:39
4  
You'll find that the majority of files these days are already compressed. Aside from zip/gz themselves, which are probably the most common files uploaded, PDFs, docx, mp3s, video files etc are all compressed in some way, and trying to re-compress wastes time and could make the file bigger. – DisgruntledGoat May 17 '09 at 11:35
3  
ASP.NET postback requests can be huge, especially with the __VIEWSTATE hidden field value. Interestingly, any part of a request that originated from the server and is transparent to the client CAN be compressed. For example, a value like the hidden __VIEWSTATE field, which is posted back unchanged, is easy to compress, since it's saved/loaded entirely on the server-side. It's just a matter of overriding a pair of methods, and adding a compression/decompression stage to the view state serialization process. See for example: codeproject.com/KB/viewstate/ViewStateCompression.aspx – Triynko Jul 27 '11 at 17:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.