I have an iOS app that works great on iOS7. Now we are testing it on iOS8, and when working under iOS8 we have problems with SSL. Some (but not all) SSL requests fail. All requests refer to the same server with an SSL certificate, which is valid and works on the desktop, and works when the same application starts iOS7.
The error we get is kCFURLErrorSecureConnectionFailed , for which Apple is:
A secure connection ended for an unknown reason.
In addition, I launched the following console:
CFNetwork SSLHandshake Error (-9846)
We use NSURLConnection. We implemented connection: willSendRequestForAuthenticationChallenge , but it is not called when we get an error.
Does anyone know if this is a known issue of iOS8? What will be my next steps to find out why these requests fail?
driis source share