up vote 82 down vote favorite
84
share [g+] share [fb]

I'm planning to develop an app for the iPhone and that app would have to access a couple of SOAP services. While doing some basic checking in the iPhone SDK I was not able to find any support for accessing SOAP services, a bit of Googling lead to the conclusion that there is no support for SOAP in the iPhone SDK.

So if I do want to build that app I'll need to come up with a approach to access SOAP services from the iPhone. What would be the best approach? Any best practices? Did someone already write a library using the functionality that is present in the iPhone SDK to access SOAP services?

(Since the service I need to access is exposed by another party and they only expose it as SOAP, it's unfortunately not an option to switch to another type of interface (e.g. REST based API).

Gero

link|improve this question

45% accept rate
1  
Hi Gero, What soap service did u use for ur application. as u have not mentioned any answers correct. – Ameya Aug 19 '10 at 8:06
feedback

protected by Bill the Lizard Nov 18 '10 at 4:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

9 Answers

http://code.google.com/p/wsdl2objc/ just added iPhone SDK Compile Support!

link|improve this answer
feedback

http://sudzc.com/

It will convert WSDL to SOAP client in Objective-C.

link|improve this answer
This is a nice one! But what if I am running my webservice on a server of my home network? How can i access it and let it generate the right code? – meersmans Dec 7 '10 at 12:34
it generate well but i am getting errors – MaheshBabu Dec 18 '10 at 13:21
1  
This looked so nice, but I can't get it to recognize any of the actions from my wsdl. Seems that every one of these automatic generators doesn't quite work. – Mortoc Feb 15 '11 at 2:10
Thanks for the great stuff, but it's barely usable. The result is not parsed correctly, only one item is returned instead of an array with many items. Putting a "short" variable generates immediately a crash. There should be somewhere to report a bug. – Hoang Pham Feb 23 '11 at 16:47
Yep. WSDL I have to work with defines web methods with dots in their names, some parameter types have hyphens, so obviously the code generated gives compilation errors. It didn't recognize a base64 type, but I'll make sure to resolve this problem with the wsdl author. – macbirdie Apr 14 '11 at 10:30
show 1 more comment
feedback

One word: Don't.

OK obviously that isn't a real answer. But still SOAP should be avoided at all costs. ;-) Is it possible to add a proxy server between the iPhone and the web service? Perhaps something that converts REST into SOAP for you?

You could try CSOAP, a SOAP library that depends on libxml2 (which is included in the iPhone SDK).

I've written my own SOAP framework for OSX. However it is not actively maintained and will require some time to port to the iPhone (you'll need to replace NSXML with TouchXML for a start)

link|improve this answer
4  
The first thought that came to my mind when I saw the question was "Don't." So +1 to FutureSchwa for reading my mind :-) – Ramin May 28 '09 at 18:42
6  
Can you elaborate on this statement "But still SOAP should be avoided at all costs" – WillF Jun 16 '09 at 17:19
2  
Just cause soap is not necessarily appropriate doesnt mean its not right in his implementation, there are needs that go beyond best practive more often than not – tigermain Sep 3 '10 at 12:47
2  
@schwa - Downvoted for posting a potentially useful answer with absolutely no supporting evidence or defense. – DougW Oct 20 '10 at 17:15
2  
This is the technical equivalent of "Don't use it because It's not provided by default" - There is no real technical reason why you should not use SOAP or any other mechanism that is provided by a service. – Petesh Nov 23 '10 at 10:42
show 5 more comments
feedback

Here is a really great tutorial on SOAP webservices on the iPhone:

Click Here For Tutorial

link|improve this answer
link moved: icodeblog.com/… – Mortoc Feb 15 '11 at 2:12
This is good as a very simple example (hardcoding the request XML as a string) It's a shame viium.com seems to be offline (where the example web service was running) – Harry Wood Dec 7 '11 at 16:55
feedback

My solution was to have a proxy server accept REST, issue the SOAP request, and return result, using PHP.

Time to implement: 15-30 minutes.

Not most elegant, but solid.

link|improve this answer
1  
How did you that? any documents. tnx – iPhoneDeveloper Jun 20 '11 at 11:52
feedback

I've historically rolled my own access at a low level (XML generation and parsing) to deal with the occasional need to do SOAP style requests from Objective-C. That said, there's a library available called SOAPClient (http://ditchnet.org/soapclient/) that is open source (BSD licensed) and available on Google Code (http://code.google.com/p/mac-soapclient/) that might be of interest.

I won't attest to it's abilities or effectiveness, as I've never used it or had to work with it's API's, but it is available and might provide a quick solution for you depending on your needs.

Apple had, at one time, a very broken utility called WS-MakeStubs. I don't think it's available on the iPhone, but you might also be interested in an open-source library intended to replace that - code generate out Objective-C for interacting with a SOAP client. Again, I haven't used it - but I've marked it down in my notes: http://code.google.com/p/wsdl2objc/

link|improve this answer
Thanks, I tried to use wsdl2objc. The generation of ObjectiveC code from the WSDL works, but is (as expected) does not directly compile against iPhone SDK. I tried to tweak the sources a bit, but ended up with a bunch of errors I could not resolve – Gero Oct 18 '08 at 18:18
feedback

Disclaimer: I am going to suggest product of my own company, but its a good suggestion for this question.

Please have a look at WSClient++ which supports asynchronous as well as synchronous soap client generator for iphone as well as mac os x.

link|improve this answer
3  
I fail to see how you could have "just stumbled upon" a piece of software developed by a company you state you founded on your blog ("Akash Kava Founder of NeuroSpeech"). Please make it clear when you're advertising your own products. – Lawrence Johnston Dec 2 '10 at 22:24
feedback

Have a look at www.remobjects.com and their roadmap. They have RO|C on the way, and that can connect to their web services, which probably includes SOAP (I use the VCL version which definitely includes it).

link|improve this answer
feedback

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