Generate iPhone SOAP classes from WSDL

in my application I need to communicate with the server and I have a WSDL file, how can I generate SOAP classes for iPhone?

+2
source share
2 answers

I personally used SUDZC in the past to create SOAP services from WSDL.

It supports both ARC and non-ARC projects, but generates very abstract code.

Check out the website and try it for yourself.

If you find any other options, let me know.

Internally, we write most of our request / response handlers using AFNetworking now.

+2
source

There is an open source SOAP binding generator called wsdl2objc . Although the generated code is terrible and the project seems outdated, it still works well.

0
source

All Articles