Hello,
Im developing a silverlight app and I need to synchronize a list in different silverlight instances that can be offline. I'll have a server online to sync them.
So we can imagine this:
pc1: A1 A2 A3
pc2: A1 A2 (A3 deleted)
server: A1 A2 A3 (deletes A3 to reflect pc2 and then updates pc1 to also delete)
It must reflect reorder of the items too. I'll want to use this with silverlight online and offline (out of the browser).
Has any of you solved a problem similar to this one? What are good approaches to it?
Thank you, Artur