Web服务在iPhone应用程序和Web应用程序中表现不同?

时间:2012-05-30 15:18:52

标签: iphone xml web-services

我正在开发一个iPhone应用程序,我需要使用Webservices获取数据。不幸的是,令人惊讶的是,我的Web服务似乎在WebApplication和iPhone中使用相同的URL链接表现不同。我使用下面提到的方法从Web服务获取响应。 urlLink是我传递给下面提到的方法的链接。

NSURL *url = [NSURL URLWithString:urlLink];
NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:60];
NSData *returnData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:nil error:nil];
//responseData = [[NSURLConnection alloc] initWithRequest:request delegate:self];
NSLog(@"The data contains..%@",returnData);
responseString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];

在responseString中我应该得到所有的xml数据。我的XML中有一些节点没有被访问,而在responseString中我没有得到一些节点。但是,当我使用相同的URL并尝试在Web中检查相同时,我得到了所有节点。我的XMl看起来像

<Response>
    <Switchflag>Y</Switchflag>
    <Assignflag>Y</Assignflag>
    <Notesflag>N</Notesflag>
    <Examflag>Y</Examflag>
    <Bookmarkflag>N</Bookmarkflag>
    <Chatflag>N</Chatflag>
    <Discussflag>Y</Discussflag>
    <Lessoncompletestatus>N</Lessoncompletestatus>
    <Coursedesc>Customer Service Skills Introduction</Coursedesc>
    <Switchvariablefield1>0</Switchvariablefield1>
    <Cmailflag>N</Cmailflag>
    <IMailflag>N</IMailflag>
    <Imsflag>Y</Imsflag>
    <Alternatecourse/>
    <Collaborativetoolflag>0</Collaborativetoolflag>
    <Chatlink/>
    <Calendarlink/>
    <VideoDuration>6:51</VideoDuration>
    <Difficulty>Easy</Difficulty>
    <PassingScore>80</PassingScore>
    <MaxAttempts>100</MaxAttempts>
</Response>

后来我更改了我的xml,然后添加了两个节点<TotalQuestions>28</TotalQuestions> <VideoID>8</VideoID> 到我的xml。现在在我的responseString中,我没有得到上面提到的两个节点。我无法找到任何替代方案。我试图清除我的浏览器缓存并清理我的构建,但我得到了相同的旧xml,缺少两个节点。此外,我试图更改字符串编码类型,但它是没有用的。对此提出任何建议或替代方案会有很大帮助吗?

0 个答案:

没有答案