We are considering compressing the data we send to our server by using web service calls. The data is string which should compress well, but can anyone share experience in compression and web services ?
Ideally I'd like to be able to pick up a string, compress it, then make the web service call sending the .compressed data.
An additional bonus would be able to decompress the response back to a string before I parse it and write parts out to an external file.
jerry