【发布时间】:2013-04-08 10:50:59
【问题描述】:
我正在尝试访问受 NTLM 身份验证保护并需要客户端证书的服务器。我正在使用 NSURLConnection 的委托方法进行身份验证,并使用 UIWebview 检索结果。
当服务器需要客户端证书时,我已经成功开发了 NTLM 身份验证和身份验证代码:
- (void) connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge {
authMethod = challenge.protectionSpace.authenticationMethod;
if ( [challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust] )
{
[challenge.sender useCredential:[NSURLCredential credentialForTrust: challenge.protectionSpace.serverTrust] forAuthenticationChallenge: challenge];
return;
}
if ( [challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodClientCertificate] )
{
[... code to extract certificate ...]
NSURLCredential *credential = [NSURLCredential credentialWithIdentity:myIdentity certificates:(NSArray*)certsArray persistence:NSURLCredentialPersistencePermanent];
[challenge.sender useCredential:credential forAuthenticationChallenge:challenge];
return;
}
if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodNTLM])
{
NSURLCredential *credential;
credential = [NSURLCredential
credentialWithUser:@"user"
password:@"password"
persistence:NSURLCredentialPersistencePermanent];
[challenge.sender useCredential:credential forAuthenticationChallenge:challenge];
return;
}
[[challenge sender] performDefaultHandlingForAuthenticationChallenge:challenge];
}
当服务器单独需要 NTLM 身份验证或客户端证书时,一切正常。当一起需要时,证书信息和 NTLM 凭据都在服务器端接收,但 IIS7 返回一个 403 页面,要求提供客户端证书...
您可能需要知道的是 willSendRequestForAuthenticationChallenge 按此顺序调用了四次:
willSendRequestForAuthenticationChallenge: NSURLAuthenticationMethodServerTrust
willSendRequestForAuthenticationChallenge: NSURLAuthenticationMethodClientCertificate
willSendRequestForAuthenticationChallenge: NSURLAuthenticationMethodNTLM
willSendRequestForAuthenticationChallenge: NSURLAuthenticationMethodClientCertificate
如果你有什么想法?
提前致谢,
【问题讨论】:
-
你有没有让这个工作?我遇到了类似的问题(有时我得到“服务器 XXX 需要客户端证书”,即使我提供了一个)我认为这可能是 iOS 8 错误,但目前无法测试 iOS 7。
标签: objective-c nsurlconnection ssl-certificate ntlm