An SSL error has occurred. Error 1200

I have a UIWebView that is loading a webpage with SSL and is now throwing the following error in iOS 9 Beta 1:


An SSL error has occurred and a secure connection to the server cannot be made.


This code all works fine in iOS 8.3 Here is the error code:


-1200

Accepted Reply

As explained in the keynote, by default all apps built with iOS 9 SDK are opted-in to Application Transport Security. HTTPS (with the most secure options currently available - maybe your server is using weaker keys or something) is required. You can opt out with a plist key - search these forums for "NSAppTransportSecurity" for several other threads on the topic.

Replies

As explained in the keynote, by default all apps built with iOS 9 SDK are opted-in to Application Transport Security. HTTPS (with the most secure options currently available - maybe your server is using weaker keys or something) is required. You can opt out with a plist key - search these forums for "NSAppTransportSecurity" for several other threads on the topic.

Thank you, that was very helpful.