iphone - iOS - Wireless Ad-hoc distribution -


i used ad-hoc provision profile export ipa manifest file testers download web server. uploaded .ipa, .plist, images , index.html server location,

like this:

/var/www/html/apps/demopad.ipa

/var/www/html/apps/manifest.plist

/var/www/html/apps/image.png

/var/www/html/apps/image-full.jpg

/var/www/html/apps/index.html

i send url testers (https://www.example.com/apps/index.html)

but when open in iphone browser (safari) download, prompts message "cannot connect www.example.com"

here plist contents

<?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/apps/demopad.ipa</string>                 </dict>                 <dict>                     <key>kind</key>                     <string>display-image</string>                     <key>url</key>                     <string>https://www.example.com/apps/image.png</string>                 </dict>                 <dict>                     <key>kind</key>                     <string>full-size-image</string>                     <key>url</key>                     <string>https://www.example.com/apps/image-full.jpg</string>                 </dict>             </array>             <key>metadata</key>             <dict>                 <key>bundle-identifier</key>                 <string>com.example.webpad</string>                 <key>bundle-version</key>                 <string>1.0</string>                 <key>kind</key>                 <string>software</string>                 <key>title</key>                 <string>demopad</string>             </dict>         </dict>     </array> </dict> </plist> 

here index.html

<html> <head>    <title>demo</title> </head> <body> <a href="itms-services://?action=download-manifest&url=https://www.example.com/apps/manifest.plist">install</a> </body> </html> 

can advise me how resolve it?


Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -