8

我正在尝试使用安全的宁静服务,这会产生错误

错误=错误域=NSURLErrorDomain代码=-1202“此服务器的证书无效。您可能正在连接到伪装成“xxx.xxx.xxx.xxx”的服务器,这可能会使您的机密信息面临风险。”

在 xCode 4.2 上工作,哪里有错误或缺少任何步骤。

使用以下代码

注册用户.f

@interface RegisterUser : UIViewController<UITextFieldDelegate,
UIScrollViewDelegate, NSURLConnectionDelegate>

注册用户.m

- (IBAction)SubmitBtnAction:(id)sender {

    NSURL *url = [NSURL URLWithString:@"https://xx.xx.xx.xxx:8223/jaxrs/tunedoorgateway/getCountries"];
    NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];

    [NSURLConnection sendAsynchronousRequest:urlRequest queue:[[NSOperationQueue alloc] init]
     completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
     {

         if ([data length] >0 && error == nil)
         {
             NSLog(@"Data = %@", data);
             // DO YOUR WORK HERE

         }
         else if ([data length] == 0 && error == nil)
         {
             NSLog(@"Nothing was downloaded.");
         }
         else if (error != nil){
             NSLog(@"Error = %@", error);
         }

     }];

}


- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {
    NSLog(@"This is canAuthenticateAgainstProtectionSpace");
    return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];
}


- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
//    if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust])
//        if ([trustedHosts containsObject:challenge.protectionSpace.host])
            [challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];

    [challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];
    NSLog(@"This is didReceiveAuthenticationChallenge");
  //  [[challenge sender] cancelAuthenticationChallenge:challenge];
}
4

3 回答 3

14

我觉得这可能是因为 DNS,比如你的服务器没有注册。

尝试使用它进行开发:

创建一个NSURLRequest+NSURLRequestSSLY.h文件并将这些行添加到其中

#import <Foundation/Foundation.h>

@interface NSURLRequest (NSURLRequestSSLY)
+(BOOL)allowsAnyHTTPSCertificateForHost:(NSString*)host;

@end

创建一个NSURLRequest+NSURLRequestSSLY.m文件并将这些行添加到其中

#import "NSURLRequest+NSURLRequestSSLY.h"

@implementation NSURLRequest (NSURLRequestSSLY)
+(BOOL)allowsAnyHTTPSCertificateForHost:(NSString*)host
{
    return YES;
}

@end

并且不要忘记在发布之前将其删除,因为您的应用可能会被拒绝。

于 2012-09-10T08:08:23.597 回答
8

失败不在您的代码中。您正在使用不提供已知证书的HTTPS服务器。如果您自己设置了服务器,则必须从 iOS 和大多数其他操作系统信任的大型证书颁发机构之一购买签名证书。

出于开发目的,您可以通过忽略不受信任的证书来测试您的 REST 服务。请按照本指南执行此操作:http: //www.cocoanetics.com/2009/11/ignoring-certificate-errors-on-nsurlrequest/

但对于生产用途,我建议您不要使用此方法,因为它会给您的应用程序带来安全漏洞。如果您确实忽略了安全性,您也可以只使用 HTTP 而不是 HTTPS。

于 2012-09-10T08:07:09.020 回答
0

我尝试了几种方法,发现它与苹果开发者中心证书有关。升级您的配置并重试。我曾尝试使用 iPad、iPhone 5 和 5S 但 iPhone 4 发布数据。当我在 iPhone 4 上更新我的配置和安装时,可以解决现在的问题。

于 2014-08-27T19:09:27.190 回答