vote up 2 vote down star
12

Hi,

I know how to connect to web server using an iPhone but now I have to connect the iPhone to a web service. I don't know how to do it and there is no demo or class available online.

Does anyone have any ideas?

Thanks

flag

8 Answers

vote up 0 vote down

You probably went with one of the solutions above, but this example app from Apple is great. It demonstrates how to use NSXMLParser to parse XML data on an RSS feed. SiesmicXML Example

link|flag
vote up 1 vote down

You can try this I made up some classes you can just include in your project and then follow the examples, you can even download a .net dataset and query it if you are using .net as the web service provider. http://grabalife.com/2009/10/19/using-net-web-services-and-dataset-objects-in-your-iphone-app/

link|flag
vote up -2 vote down

what was the solution boss?

link|flag
vote up -2 vote down

And what was the solution?

link|flag
vote up 1 vote down

The link that amrox provide, SOAP Web Services, does answer all the stuff that you asked for.

link|flag
uhh... so why repost the same answer, then? – unforgiven3 Dec 1 at 15:22
vote up 5 vote down

You might find this tutorial, called Intro to SOAP Web Services useful. He shows how to package a request, send it to a web service, and read the response.

If you need some help with XML parsing, there is the TouchXML library which will give you a nice xml "document" to work with. Just be cautious of memory usage.

If you have to parse large XML message this tutorial about libxml and xmlreader in Cocoa will show you how to parse XML with the lower-level event-style parsers.

link|flag
vote up 7 vote down

You can use these 2 lines which return the response of your HTTP request. You don't need any configuration. This code is usefull if you try to access a PHP scritp for example. After you just have to parse your result.

NSURL *URL=[[NSURL alloc] initWithString:stringForURL];
NSString *results = [[NSString alloc] initWithContentsOfURL :URL];
link|flag
vote up 1 vote down

In my opinion, you have two options :

  • Use a third party library. You can try wsdl2objc. It didn't work for me, but it is under active development so it improves every day.
  • Use a raw HTTP connection and handle every request/response. This is the way I followed. It is hard, so I'd also like to know a better approach.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.