I have a product/shopping list (consisting of product objects with a name, product_id etc) on the iPhone side. I wish to send this list to the server where I will compare the list on the server with the one from the iphone (to merge the changes made and send the merged list back to the iphone).
How would I send my array over a HTTP POST to the server? I know you probably can't just send the array, you would have to store it in either xml or json probably.. But still I'd like to have some possibilities before I start coding :)
Thanks in advance,
LeWiOn
Edit: Solved :) Thanks for the help guys!