tags:

views:

38

answers:

1

I'm creating an iPhone app and I want the app to be able to send some information in the form of JSON string over a web server/app (I really don't know) and display it in a web page or save it to a file. I know how to send the request from the iPhone, the problem is I don't have a clue on how to implement the server side and integrate it with a web page that can respond to the HTTP post I'm trying to send to it. I don't need any specific details so if you could only point me to the right direction e.g. reading material, websites, key technologies for this.

Thank you for your help

A: 

The general term for using JSON and HTTP is RESTful (actually that's not quite true, as REST doesn't technically mean JSON [though often it does!] and REST also includes other things, but it's still a good search term).

Here's a general set of links about the right kind of areas.

For python:

http://www.freenet.org.nz/dojo/pyjson/

For C#:

http://www.techbubbles.com/wcf/rest-based-wcf-service-in-aspnet-35/

For Java:

http://www.oracle.com/technetwork/articles/javase/index-137171.html

That should be enough to get you started; googling based on the various terms will throw up more articles. If you find any really good ones do add to your own answer!

JosephH
Thank you, thats great I just needed some pointers to get started
Mauricio Galindo
@Mauricio Glad I could help. If you're happy with my answer you can mark it as "Accepted" by clicking the grey "tick" to the left of my answer.
JosephH