I am using Javalite Http client to make a post request to a REST service and would like to get the result gziped (as it can be quite large and compresses well).
I am reading the reply with the post.text() method but the result seems to be the compressed data rather than the actual text data I expected to get.
Is there a way to make Javalite transparently unpack the response when the service reply is compressed or is it by design that I need to check if the reply is compressed and in that case myself find a way to decompress it?