I'm searching for a tool that can compress JSON on the server side (using C#) and then decompress it on the client side, as well as vice versa. The entire data model for my webpage is in JSON format and I need to find a way to reduce its size. I've come across cJSON and RISON, but haven't found any C# implementations.
Any suggestions?
To clarify: I need a solution on the server side that can take a JSON string and encode/compress it to minimize its size before sending it to the client. On the client side, I need a JavaScript utility that can decode/uncompress this data. It should also work in reverse order.
Here are some reference links:
cJson
Rison