Clean SOAP Calls from iOS - SudzC
- by Richard Jones
This is worth another mention.
If you need to call SOAP web-services from iOS or Javascript, and lets face who doesn't. http://SudzC.com really delivers.
You give it the URL to you're WSDL file (or upload a file) and it just spits out a ready to go Xcode project.
I would point out that to get it to work 100%
I changed line 204, in Soap.m (commented out line is old version, mine is below)
//if([child respondsToSelector:@selector(name)] && [[child name] isEqual: name]) {
if([child respondsToSelector:@selector(name)] && [[child name] hasSuffix: name]) {
I consumed a Microsoft Dynamics NAV set of web-service pages no problem (and they tend to be fairly complex WSDL definitions).