加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

NSURLConnection / CFURLConnection HTTP加载失败(kCFStreamErro

发布时间:2020-12-14 17:47:29 所属栏目:Java 来源:网络整理
导读:目前我正在使用ios中的一个soap网页服务,我的源代码如下 NSString *xml = requestXMLToSent;NSString *msgLength = [NSString stringWithFormat:@"%lu",(unsigned long)[xml length]];NSURL *serviceURL = [NSURL URLWithString: url];NSMutableURLRequest *
目前我正在使用ios中的一个soap网页服务,我的源代码如下
NSString *xml = requestXMLToSent;

NSString *msgLength = [NSString stringWithFormat:@"%lu",(unsigned long)[xml length]];
NSURL *serviceURL = [NSURL URLWithString: url];
NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:serviceURL];

[urlRequest addValue:@"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[urlRequest addValue: serviceURL forHTTPHeaderField:@"SOAPAction"];
[urlRequest addValue:msgLength  forHTTPHeaderField:@"Content-Length"];
[urlRequest setHTTPBody: [xml dataUsingEncoding:NSUTF8StringEncoding]];
[urlRequest setHTTPMethod:@"POST"];

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


    if (connectionError == NULL) {

        NSHTTPURLResponse * httpResponse = (NSHTTPURLResponse *) response;
        NSInteger statuscode = httpResponse.statusCode;
        if (statuscode == 200) {

            NSString *responseString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
            NSLog(@"response String  : %@",responseString);


        }else{
            NSLog(@"%@",response);

        }




    }else{

        NSLog(@"There is an error in URL connection and the Error is : %@",connectionError);
    }

我收到以下错误@控制台

NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL,-9813)

URL连接出现错误,错误是:Error Domain = NSURLErrorDomain Code = -1202“此服务器的证书无效,您可能会连接到假装为”www.xxxxxxxx.net“的服务器,该服务器可能将您的机密信息置于危险之中.“ UserInfo = 0x10948bbb0 {NSUnderlyingError = 0x109470d10“该服务器的证书无效,您可能会连接到假冒为”www.xxxxxx.net“的服务器,这可能会使您的机密信息处于危险之中.”NSErrorFailingURLStringKey = https: // www .———————————-,NSErrorFailingURLKey = https:// —– ——————– NSLocalizedRecoverySuggestion =是否要连接到服务器?NSURLErrorFailingURLPeerTrustErrorKey =,NSLocalizedDescription =此服务器的证书无效.您可能会连接到假装为“www.xxxxxx.net”的服务器,这可能会使您的机密信息面临风险.

解决方法

服务器正在抛出SSL证书错误.
为了测试,您可以将以下代码添加到appDelegate中:

(BOOL)allowAnyHTTPSCertificateForHost

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读