I am trying to distribute an iOS 7.1 app using In-House distribution on an Enterprise Account. Currently I have a web page that has a link that should install my app. The code for the link is below.
<a href="itms-services://?action=download-manifest&url=https://www.my-website.com/app/app.plist" id="text">Install App! </a>
I have my .html file, .plist file and .ipa file all on a https website. However, I still get the useless error "Cannot connect to www.my-website.com" when I click on the link. Viewing the console logs shows the following error.
Warning: Could not load download manifest with underlying error: Error Domain=SSErrorDomain Code=109 "Cannot connect to www.my-website.com" UserInfo=0x14e27630 {NSLocalizedDescription=Cannot connect to www.my-website.com, SSErrorHTTPStatusCodeKey=404}
I looked all over the web for this error but none were of code 109. And 404 was not helpful since it just meant the page was not found.
NOTE: I am using IIS for my website.