Reputation: 493
How would you implement a data synchronization solution that ensures data on a mobile device and web server are in sync.
Upvotes: 3
Views: 2244
Reputation: 1791
We use a Unix-Timestamp in our company for this. The Server is comunicating with us in json over tls and client is using AsyncSocket. For Web-Server (https) you can take for example a REST-service and ASIHTTP for client. But our solutions are used for client independent services, so if you have only access with IOS/OS X it's maybe easier to use other solutions for direct synchronization :)
Upvotes: 2