请问 ios 怎么访问 webservice?

发布于 2021-11-28 10:07:19 字数 1447 浏览 832 评论 1

现在有一个 webservice 接口,

http://58.57.6.222:9000/CKWebServer/CKWebService/AllinOne?wsdl

方法名: checkRole

参数: userStyle:GK   loginName:17839987221   password:111111

请问用 object-c 代码怎么访问?

我用 https://github.com/priore/SOAPEngine 这个库,

MyClass *myObject = [[MyClass alloc] init];
    myObject.userStyle = @"GK";
    myObject.loginName = @"17839987221";
    myObject.passWord = @"111111";
    
    SOAPEngine *soap = [[SOAPEngine alloc] init];
    soap.userAgent = @"SOAPEngine";
    
    // service url with WSDL, and operation (method name) without tempuri
    [soap requestWSDL:@"http://58.57.6.222:9000/CKWebServer/CKWebService/AllinOne?wsdl"
            operation:@"checkRole"
                value:myObject
completeWithDictionary:^(NSInteger statusCode, NSDictionary *dict) {
    
    NSLog(@"Result: %@", dict);
    
} failWithError:^(NSError *error) {
    
    NSLog(@"%@", error);
}];
返回了

SOAPEngine Sample[27688:779398] Error Domain=NSOSStatusErrorDomain Code=0 "Unexpected wrapper element checkRole found.   Expected {http://webservice.ck/}checkRole." UserInfo=0x7fa553f1a970 {NSLocalizedDescription=Unexpected wrapper element checkRole found.   Expected {http://webservice.ck/}checkRole.}


@鉴客,@dake 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷弦 2021-11-29 14:07:17

AFN,ASI应该都可以吧。
SOAPEngine 没有用过

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文