vote up 0 vote down star
1

My current place of employment is primarily a Microsoft shop and we use Visual Studio pretty extensively. I've grown fond of the laziness of using "Add Service Reference" (formerly "Add Web Reference" in VS2005) to download WSDLs and form classes and methods in nice, convenient namespaces for me.

Since we have started to branch out into iPhone development, we have been using XCode as our IDE for iPhone projects. I would like to be able to do something similar, but haven't been able to find if this ability exists.

If there is similar functionality in XCode, where is it?
If not, is there a template or something I can download that will do what I want?

flag

1 Answer

vote up 1 vote down check

There is not anything built in for consuming soap services. If your team is using WCF for the web-service your easiest route is going to be adding a REST endpoint to your existing service. Then you can use a combination of NSUrlConnection, NSXmlParser and key-value coding to make it almost as easy.

link|flag
I'm giving an upvote for answering the first part. That there isn't an equivalent. Assume I have no control over the endpoints, pure consumer on my end (for example I was using Amazon's services). – toast Mar 6 at 22:33
I havent seen anything easy for implementing soap... However if you really are using Amazon services, not only is there a REST api already, but someone has written iPhone code and uploaded it to their developer site. – Lounges Mar 6 at 23:02
Not using Amazon, just throwing it out as an example of an API I have no control over and can't change it to REST even if it didn't already have one. Anyway, I've searched for a few days and it looks like I'll be rolling my own. – toast Mar 10 at 4:11

Your Answer

Get an OpenID
or

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