Hi,
I am writing an application which consists of a master "server" database (most probably sqlite) and a client side replica with client specific records (again, Sqlite). The clients may only be online occasionally or may be on slow 3G connections; I need a solution to reliably synchronise content either on demand or at scheduled intervals. The client application could be either WPF/Silverlight or HTML5 (hence the preference for sqlite).
I've been looking at the Microsoft Synchronisation framework 2.0 but obviously this won't work for HTML5 and I'd like to keep the architecture as consistent as possible. Any other ideas?
Thanks.