Clean SOAP Calls from iOS - SudzC
Posted
by Richard Jones
on Geeks with Blogs
See other posts from Geeks with Blogs
or by Richard Jones
Published on Thu, 18 Oct 2012 17:18:28 GMT
Indexed on
2012/10/22
11:02 UTC
Read the original article
Hit count: 265
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).
© Geeks with Blogs or respective owner