I am trying to distribute my application from web server.
I have created .ipa file using enterprise distribution provisioning profile and certificate.
I have put .ipa file and manifest.plist file on server.
Server configuration :
We have configure IIS Manager with below mime types:
.ipa application/octet-stream
.plist text/xml
we have tried
.plist application/xml also.
My server is configured with ssl(and it is not self signed)
There is no authentication for these files.
My manifest.plist looks like below,
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://www.example.com/appname.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.appname</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>App Name</string>
</dict>
</dict>
</array>
</dict>
</plist>
now when I am clicking on below url
itms-services://?action=download-manifest&url=https://www.example.com/manifest.plist
I am getting error like below,
Cannot connect to www.example.com
Can anybody help to resolve this? Any help would be appreciated.