Hi everybody, i'm developing a webapp for iphone/ipod and using the client's side database. I want my webapp to work mainly offline and allow users to fill the database and at a certain point i'd like to send my database to a server to process and store all the informations. The problem is i can't find a proper way to send my tables to a server in order to fill its database with the one sent from the iphone. Does anyone has a clue ?
A:
I would suggest POSTing JSON to your server. So you would read the data from the client side database into JSON object form then take this and POST it to your server then let the server manage mapping into your datastore.
willbt
2010-06-15 07:28:45
Yes thanks this should work ! :-)
Edoc
2010-06-19 22:25:10