views:

434

answers:

1

Hi all,

I am looking for some tutorials on how I can consume a .Net webservice on the iPhone platform (3.0). I have never looked at Cocoa XML prasing before, to the more indepth the tutorial is the better.

We have an existing webservice framework currently in place, which return XML, so I would ideally like to consume these, as opposed to reimplimenting them to use JSON.

Thank you for taking the time to read this request.

Regards

+1  A: 

In general, consuming a SOAP web service in a mobile environment can be pretty expensive. I would highly recommend considering either a JSON or very simplified REST based XML service when delivering data to your iPhone application.

Greg Martin