How to sync Windows mobile app when connected?
I am writing a Windows application that will run on a PDA, not a smartphone. It will also be used in an area with spotty Wi-Fi reception, so I will need to sync the data in the app when it's connected to another computer. What APIs or frameworks should I be dealing with? I looked at RDA and Sync Framework but they both seem to require a network connection on the device. Thank!
source to share
ActiveSync was the "original" Windows Mobile synchronization platform. Basic synchronization operations can be performed using RAPI . There is a managed wrapper for this API .
A full blown ActiveSync Serivice Provider can be built for full, true sync operations, but must be written in C ++.
Also note that for most new devices, the USB connection is an RNDIS network connection and things like the sync structure will work with it.
source to share