Reputation: 3711
Utilizing Alamofire, Im noticing that the code below isn't being hit with a breakpoint. I make a connection, and I get the following error: (Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo=0x1741b3f60 {_kCFStreamErrorCodeKey=-9806, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x17484b8e0 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error -1200.)", NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made.,
func connection(urlRequest:NSURLRequest,rest:RESTFull?, completion: (AnyObject?, NSError?)->Void){
let req = request(urlRequest).responseJSON(options: .AllowFragments) { (_, response, data, error) -> Void in
if let actualData: AnyObject = data {
completion(actualData, nil)
}else {
completion(nil, error)
}
}
req.delegate.taskDidReceiveChallenge = { session,_, challenge in
println("Got challenge: \(challenge), in session \(session)")
var disposition: NSURLSessionAuthChallengeDisposition = .UseCredential
var credential: NSURLCredential = NSURLCredential()
if (challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust){
disposition = NSURLSessionAuthChallengeDisposition.UseCredential
credential = NSURLCredential(forTrust: challenge.protectionSpace.serverTrust!)
}
return(disposition, credential)
}
}
Upvotes: 4
Views: 2571
Reputation: 125
You can't set value to the Request Class's taskDidReceiveChallenge. You can use Manager class's delegate instead.
Manager.sharedInstance.delegate.taskDidReceiveChallenge = { session, _, challenge in
print("Got challenge: \(challenge), in session \(session)")
var disposition: NSURLSessionAuthChallengeDisposition = .UseCredential
var credential: NSURLCredential = NSURLCredential()
if (challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust){
disposition = NSURLSessionAuthChallengeDisposition.UseCredential
credential = NSURLCredential(forTrust: challenge.protectionSpace.serverTrust!)
}
return(disposition, credential)
}
Upvotes: 2