How do I consume a web service in Objective-C?

coldfusion, iphone, json, objective-c, web-services

Solution

A. Get ASIHTTPRequest.

B. Get json-framework.

C. Use A to get data from your web-service then hand it to B which returns a dictionary.

That's pretty much it.

Problem

I have a web service developed in ColdFusion that I am trying to consume on the iPhone. The web service returns JSON which should be fairly simple to read. However, I have been unable to find a good simple example of an iPhone app calling a web service and using the data. Are there any good tutorials or examples out there that I am just missing?

Original source

Related problems