Does anyone knows if NSURLConnection/NSURLRequest have support for gzip requests.

If does, can you provide more information?

Thanks in advance!

link|improve this question

feedback

1 Answer

up vote 19 down vote accepted

although it does not seem to be documented, there is evidence that NSURLConnection does have transparent gzip support. meaning that if the server supports gzip encoding, and your request has an Accept-Encoding header containing gzip*, the server will send a gzipped response, which NSURLConnection will automatically decode.

* NSURLRequest might add that header by default. if not, you have to add it manually like so:

 [urlReq setValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"]
link|improve this answer
5  
1. i think you need an NSMutableURLRequest to add a header 2. as of "iOS 3.2" as base sdk, the accept-encoding header containing deflate and gzip seems to be included automatically (apparently didn't used to be). – hop Dec 8 '10 at 15:38
5  
I've just done tests as well and saw that iPhone adds gzip and deflate by default. Does anyone know if it was always supported or since which version Apple has started including Accept-Encoding by default? – Dmitry Feb 11 '11 at 18:17
What about gzip encoding requests sent to the server? stackoverflow.com/questions/6204066/… – MattDiPasquale Jun 1 '11 at 15:56
Swept me off the feet! Thanks! – Prakash Sep 30 '11 at 12:51
feedback

Your Answer

 
or
required, but never shown

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