iOS 4.3 - 尝试Web服务连接时网络连接丢失了吗?

时间:2011-03-25 20:11:54

标签: web-services http authentication ios4

我正在开发一些代码来连接到基于.NET的安全Web服务。我尝试使用手动创建的SOAP消息,HTTP POST和HTTP GET进行连接。在每次尝试中,我在NSURLConnection上使用NSMutableURLRequest。我已按以下方式实施了didReceiveAuthenticationChallenge ...

- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
    NSLog(@"Authentication challenge");

    if ([challenge previousFailureCount] == 0) 
    {
        NSLog(@"authentication failed");

        NSURLCredential *credential ;

        credential = [NSURLCredential credentialWithUser:@"username" password:@"password" persistence:NSURLCredentialPersistenceForSession];

        NSLog(@"credential created");

        [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge];

        NSLog(@"credential sent");
    } 
    else 
    {
        NSLog(@"Credentials are wrong!");

        [[challenge sender] cancelAuthenticationChallenge:challenge];
    }
}

显示所有日志消息。写入“凭证已发送”约30秒后,我收到以下错误。

  

连接失败:错误域= NSURLErrorDomain代码= -1005“网络连接丢失。”

我在这里和其他地方找到了许多关于处理身份验证挑战的示例。我所做的一切似乎都与众不同。我也实现了以下以防万一,但结果是一样的。

- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace 
{
    NSLog(@"canAuthenticateAgainstProtectionSpace");

    //return YES to say that we have the necessary credentials to access the requested    resource
    return YES;
}

我发送的用于响应质询的用户名/密码存在。我已通过在浏览器中输入服务URL并在身份验证对话框中输入用户名/密码进行验证。通过浏览器调用服务时返回XML。

我已经在这上面撞墙了几天了。任何指针都将非常感激。

由于

肖恩

3 个答案:

答案 0 :(得分:3)

我刚发现错误。 URL没有被正确编码,但直到我挖了NSUrl URLWithString:之后我才意识到这一点。我添加了以下代码,一切都很好。

NSString *myURL = [NSString stringWithFormat:@"http://server/path/to/service.asmx/Method?param=%@", param.text];

NSString *fixedURL = [myURL stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; 

NSURL *URL = [NSURL URLWithString:fixedURL];

NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:URL];

答案 1 :(得分:0)

iOS 4.3.1(刚刚发布!)在发行说明中有这个:

解决与激活和连接某些蜂窝网络相关的错误

也许它也解决了你的问题。我在iPad上使用MonoTouch下的SOAP有类似的效果。当切换到3G时,它声称它无法连接(套接字错误)。如果更新有帮助,我也会尝试。

答案 2 :(得分:0)

还没有。我想我可能要编写一个单独的服务来处理iPad和具有我需要的数据的服务之间的身份验证。 iPad不会进行任何身份验证。不是理想的解决方案,但它暂时有用。