I am calling Java Web service in iOS app by making NSURLRequest by posting web service URL. I am successfully able to get response data from NSURLResponse.
But my problem here is I have to send few parameters in in web service URl as query string, I want to compress this parameter which is NSString in objective C and retrieve it on server side and decompress it.
So I just want to know here is there any way I can compress NSString at iOS client layer and decompress it at Java web service level for further processing.