I have a web server which contains a list of "interesting locations". These are "hard coded" on the web server, and maintained from an administrator on the server-side. Users can't add or remove anything.
From within my app, I want to make a button "fetch locations", and the app should then contact the web server and ask for that "interesting locations" list.
I'm using Core Data and have an InterestingLocation entity in my model. The goal is to get the data from the web server and persist it on the device with Core Data, so that it is accessible even without internet connection.
My idea was to use XML on the server side and output the InterestingLocation "objects" in an XML file. There are about 100 of them only, so not really huge.
On the client side (device), maybe XML-RPC?
Would be happy about some suggestions and further information where/how to get started :)