I am working on an application where client and server share an object model, and the object graphs can become rather big.
To save an object from client to server, ideally i would like to send only the difference over the wire, to minimize network traffic. I can pull the original object graph on the server and apply the delta to it
Wondering if there are any tools or projects out there or if anyone has had any experience with doing such a thing ..
many thanks