Sudzc with iOS 5 and ARC

后端 未结 4 479
太阳男子
太阳男子 2021-02-02 02:31

I\'ve been trying to get a webservices working using Sudzc. Whenever I convert my WSDL to obj-c without automatic reference counting it works just fine. The problem is, we are b

4条回答
  •  难免孤独
    2021-02-02 02:45

    In my case it was an .Net web service (WCF) and I had to use s:Body: Found out by printing the CXML document:

    CXMLNode* test = [doc rootElement];
    NSLog(@"%@",test);
    

    Here I got this:

    <**s:Body**>8>
    

    Thanks to previous posts I was able to find it out and posted the complete answer again on my blog: http://www.dailycode.info/Blog/post/2012/08/07/SUDZC-webservices-always-return-0-(WCF-web-service-and-IOS-client).aspx

提交回复
热议问题