tags:

views:

18

answers:

1

I want to save the data which i gather through my iphone app to my webspace in xml format so that the other user's can access it and see the data.

Thanks,

+1  A: 

Use an HTTP client library such as ASIHTTPRequest or HTTPRiot. Issue a POST request to a resource on your server, with the XML included in the request body.

David M.
What do you mean by "POST request to a resource on your server" what does server means?? Do you mean provider or do ihave to make my own server.
Ashutosh
Yes, your website will have to handle the request and save it.
UltimateBrent
@UltimateBrent: Can you give me some link which explains this. I have never done this knid of stuff.
Ashutosh
This is probably beyond the scope of a Stack Overflow question. But take hope: If you can write an iPhone app, you can figure out how the web works.
David M.
Yep, web programming is significantly easier than Objective-C. Get a book on PHP or something and learn the basics. Won't take you long.
UltimateBrent
Ashutosh, UltimateBrent is joking about the PHP part.
David M.