4

Is it true, there's no native built-in libs or frameworks for communicating with a web service via SOAP? There's some Web Services Core framework that deals with SOAP but it's available only for mac os. All stack overflow posts mention about 3rd party libs for dealing with SOAP (CSoap and other)...

Currently, I'm looking for a wrapper API like "sendRequestWithMessage:" and "receiveResponseWithMessage:". I would prefer higher level API instead of manual construction of HTTP request, setting headers (length and etc), and maybe simplified XML construction.

Community
  • 1
  • 1
Centurion
  • 14,106
  • 31
  • 105
  • 197

1 Answers1

3

SudzC.com generating files are not a library , it generates your classes based on your wsdl file, it generates purely objective c source code.

Sanjeev Rao
  • 2,247
  • 1
  • 19
  • 18
  • Thanks. I already "got my hands dirty" both with SudzC and with wsdl2objc. Have tested with simple wsdl - http://www.w3schools.com/webservices/tempconvert.asmx?WSDL, both works as expected, however, SudzC has a lot more clear code and even generates documentation. So, I guess I will stick with SudzC. PS: hope its website will not get down :) – Centurion Feb 06 '12 at 10:58