views:

959

answers:

1

I have two clients A and B. Both clients have identical, synced local data caches.

If client A makes an offline edit to record X and then client B also offline edits record X and syncs with the server, when client A syncs with the server, the change that client B made is not reflected and no amount of bidirectional syncing makes the two clients correctly synced with the server.

Other than this, my sync app works great for deletions, additions edits etc. It's only simultaneous offline edits that destroy integrity.

I am using SQL 2005 (with the necessary SQL scripts for sync support applied)

Is there any resource that explains the nuts and bolts of how sync framework actually works and how it decides when to sync entries?

+1  A: 

Is there any resource that explains the nuts and bolts of how sync framework actually works and how it decides when to sync entries?

Have you looked at the Sync Framework spec? Also Steve Lasker's blog has some good tips on OCS and sync framework. He was pretty much the major driving force behind OCS and SF, although he now moved to Cloud.

Remus Rusanu