设置:
使用基本身份验证调用两个不同的服务器会导致两种不同的行为。
通过
访问http://test.webdav.org/auth-basic/时_request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://test.webdav.org/auth-basic/"]]
委托方法:
- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge`
被召唤。
但是通过
访问http://browserspy.dk/password-ok.php时_request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://browserspy.dk/password-ok.php"]];
不会调用委托方法。 这两个测试网站之间有什么区别?