vote up 12 vote down star
17

Hi,

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

flag

57% accept rate

7 Answers

vote up 12 vote down

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

link|flag
vote up 5 vote down

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|flag
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 at 18:42
Can you elaborate on this statement "But still SOAP should be avoided at all costs" – WillF Jun 16 at 17:19
vote up 3 vote down

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|flag
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
vote up 3 vote down

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|flag
vote up 3 vote down

here is a really great tutorial on SOAP webservices on the iPhone

Click Here For Tutorial

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

Hi,

@schwa: why do you consider that SOAP shall be avoided on iPhone ?

Quentin

link|flag
1  
Try commenting on his answer, this is not an answer to the question of OP. – lhunath May 29 at 8:51
Good point. Looks like someone else has already asked. If you delete this answer, you're more likely to get to 50 and be able to comment. :-) Upvoting only to help push you closer... – Quinn Taylor Nov 20 at 15:46

Your Answer

Get an OpenID
or

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