I am writing an application that consists of a main server database (most likely sqlite) and a client replica with client registries (again, Sqlite). Clients can only be online or can be on slow 3G connections; I need a solution for reliable content synchronization on demand or on a schedule. The client application can be either WPF / Silverlight or HTML5 (hence the preference for sqlite).
I am looking at the Microsoft Synchronization framework 2.0, but obviously this will not work for HTML5, and I would like the architecture to be as consistent as possible. Any other ideas?
Thank.
source
share