我在过去的几天中遇到了关于在ipad上下载应用程序的问题。无法在ipad2上下载应用程序
我所做的是在我的IIS服务器上托管.ipa和.plist,并将证书安装在服务器上。其实我正在给https链接下载应用程序。
无论何时,该服务从iPad到底打,有时会出现错误:“无法连接到服务器或其他原因而无法在此时间下载,然后重试很多次”,但无法下载
我发送.plist文件的代码和我们调用.plist文件的html。
代码的plist科:
<?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://<ServerName>:<PortNumber>/abcV.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>abc</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>subtitle</key>
<string>abcV.25</string>
<key>title</key>
<string>abcV.25</string>
</dict>
</dict>
</array>
</dict>
</plist>
我打电话了ITMS服务于身体:
<a href="itms-services://?action=download- manifest&url=https://<ServerIP>:<PortNumber>/abc.plist">Install the app</a>
我在做什么错?
它与http以及相同的URL一起工作正常。我们唯一的区别是,现在我们在路径中使用https而不是http – user901916
我希望这会工作,, http://stackoverflow.com/a/8893564/1410561 – Bharath
请告诉我一件事证书需要安装在服务器端和ipad以及或只在服务器端 – user901916