how work with web service soap?

What is the best way to develop an application that accesses web service soap? Someone would have an example? Thank you very much in advance.

The only Apple-provided SOAP API is WebServicesCore. I strongly recommend against using that because a) it’s only available on OS X, b) it’s officially deprecated, and c) it’s quite ugly.

For simple SOAP APIs it’s pretty easy to run the request manually (construct the request using an XML API, send it via NSURLSession, and parse the response using an XML API). For complex SOAP APIs that gets kinda tedious.

There are third-party SOAP libraries for our platforms, but I don’t have a specific recommendation because I’ve not used any of them myself.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"
how work with web service soap?
 
 
Q