How to access SOAP services from iPhone

后端 未结 7 1373
无人共我
无人共我 2020-11-22 09:34

I\'m planning to develop an app for the iPhone and that app would have to access a couple of SOAP services. While doing some basic checking in the iPhone SDK I was not able

7条回答
  •  半阙折子戏
    2020-11-22 10:03

    You can connect using a tool that I found http://www.wsdl2code.com

    SampleServiceProxy *proxy = [[SampleServiceProxy alloc]initWithUrl:@"YOUR
            URL" AndDelegate:self];
    
    [proxy GetDouble];
    [proxy GetEnum];
    [proxy getEnum:kTestEnumTestEnum2];
    [proxy GetInt16];
    [proxy GetInt32];
    [proxy GetInt64];
    [proxy GetString];
    [proxy getListStrings];
    

提交回复
热议问题