Reputation: 2863
I'm using core data in our iOS universal application and want the ability for the user to back their data up to our server. So they can log in with another device and pull down that data to that device. Has anyone got any advice on this? I want to analyse the data at the server to synchronise information with our stores as well, so the data must be readable via the server end as well.
I want to send the entire core data store over in one push, so will be an XML mashup of entities from the core data store that will be deciphered on retrieval.
How can I do this?
Upvotes: 0
Views: 322
Reputation: 2863
Have accomplished this using GDataxml to build the xml string and push it through a web service at the server end. Performance is great.
Upvotes: 1
Reputation: 26952
Your duplicating some iCloud functionality here. Why not leave the cloud storage and retrieval to iCloud and then when the app starts, synchronise with your server
Upvotes: 0