I have a sample app that is a SQL Server peer-to-peer one-way sync app that seesm to be working fine except that when I insert a new record on the Souce Peer and sync, the record is not inserted on my Destination peer and I can't figure out why. I see a
record appear in my tracking table that differs from the initially inserted records from the initial sync by:
scope_update_peer_key=0 , 1 for all other eecords
scope_create_peer_key=0
and
sync_row_is_tombstone=1
I am assuming the tombstone setting has something to do with it, but I can't figure out what. The code sample I am running is the SqlSyncProvider simple provider sample app. Does anyone know if this is how this is supposed to work and what I need to do to
insure that any records added at my Source Peer and always added to my Destination peer on any successive syncs?
Thanks