-1

在我的应用程序中,我正在使用 WSDl webservice。并尝试调用 webservice 方法。在该请求中成功发送并获得响应。但是当我使用以下方法获取该响应时:

     // Called when the connection has finished loading.
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    NSError* error;
    if(self.logging == YES) {
        NSString* response = [[NSString alloc] initWithData: self.receivedData encoding: NSUTF8StringEncoding];
        NSLog(@"response=%@", response);
        [response release];
    }

它给出了以下异常。我的 NSLog 语句显示了以下详细信息:

response=<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><soapenv:Fault><faultcode>soapenv:Server</faultcode><faultstring>org.apache.axis2.databinding.ADBException: Unexpected subelement {http://services.webservices.sparta.com}sSessionId</faultstring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope>

请建议我解决此问题的方法。谢谢你。

4

1 回答 1

0

从问题描述中我们无法准确找出问题所在。

但是从您的日志中,我可以给您一些建议来检查您的代码:

<soapenv:Fault><faultcode>soapenv:Server</faultcode><faultstring>

1) 您可能将错误数量的参数传递给 Web 服务。

2)参数data type可能not be matching。例如,您正在传递string服务器接受integer的位置,反之亦然。

3) 或web-service having some problem

您还可以搜索org.apache.axis2.databinding.ADBException: Unexpected subelement。有许多有用的链接可以帮助您确定问题出在您的网络服务中还是在您的 iphone 编码中。

于 2012-04-12T04:43:15.820 回答