HTTP Connection problems on iOS 9 for Apps built with XCode 7 - How to fix that

Problemi di connessione HTTP per le App compilate con XCode 7 su iOS9 - Come risolvere

Guess what? iOS 9 and XCode 7 are finally out, and - like almost always - there's the usual number of breaking changes that will drive most developers mad. Among the biggest ones there's the new App Transport Security (ATS) feature, which happens to be enabled by default starting from iOS 9.0 and OSX 10.11 and will basically block any non-HTTPS connection for your App.

Yeah, you've read it right. Here's the Apple official statement about that:

It improves the privacy and data integrity of connections between an app and web services by enforcing additional security requirements for HTTP-based networking requests. Specifically, with ATS enabled, HTTP connections must use HTTPS (RFC 2818). Attempts to connect using insecure HTTP fail. Furthermore, HTTPS requests must use best practices for secure communications.

This will undoubtely translate into tears of joy for a lot of developers relying to home-made web services hosted on non-HTTPS environments or non-TLS based storage services (such as Amazon AWS).

Luckily enough, until you find the money to provide yourself with a HTTPS certificate, you can disable the ATS feature by adding the following XML lines in your
Info.plist file (right-click on it > Open As > Source Code):

Disable ATS for a specific domain only

You can add more exceptions by repeating the highlighted lines (5-16) one or multiple times.

Completely disable ATS

This second option might sound a bit too extreme, yet if your App features multiple HTTP connections to different URLs (or to arbitrary URLs, such as user-defined ones) this could be your only chance to have it fixed for good.

Useful links

About Ryan

IT Project Manager, Web Interface Architect and Lead Developer for many high-traffic web sites & services hosted in Italy and Europe. Since 2010 it's also a lead designer for many App and games for Android, iOS and Windows Phone mobile devices for a number of italian companies. Microsoft MVP for Development Technologies since 2018.

View all posts by Ryan

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.

This site uses Akismet to reduce spam. Learn how your comment data is processed.