Cannot connect to xxx.xxx.xxx.xxx when downloading iOS app by OTA

The previous worked site, but now does not work for the downloading of ipa file by OTA.  The error is "Cannot connect to 192.168.192.200" when downloading from iPad.

After setting below Mime Type in our application on IIS, the issue is fixed.

Set Up and Configure the Web Server


There are two ways to add mime type for the server:

1. Added for the IIS manager

Cannot connect to xxx.xxx.xxx.xxx when downloading iOS app by OTA_第1张图片

Make sure you have a web server online and configured properly. The most important aspect of this is to make sure that the proper mime types have been added to the Mime Type Settings:

For Mac OS X Server:
application/octet-stream ipa
text/xml plist

For IIS:
.ipa application/octet-stream
.plist text/xml

You will also need to determine exactly where on the server the ipa and manifest files will be stored. For this example, we put test.ipa and test.plist in /WAP/HeatApplication/ (making the fully qualified path for our test app distribution server http://192.168.192.200/apps/WAP). Knowing this path is important for the next step.

Second way is to added in web.config xml file:


你可能感兴趣的:(Cannot connect to xxx.xxx.xxx.xxx when downloading iOS app by OTA)