iOSアプリを作成し、選択したデバイスをidevicesブラウザサファリにダウンロードしてインストールできるようにしました。次のようなリンクを作成します。
<a href="itms-services://?action=download-manifest&url=http://myserver.com/Info.plist">
クリックすると、「myserver.comに接続できません」というメッセージがポップアップ表示されました。
次に、IIS に MimeType がないことがわかったので、追加し直します。
.ipa application/octet-stream
.plist text/xml
しかし、最後にクリックしてもまったく反応がありません。info.plist の設定が間違っていたかどうかは疑わしい。
これが私のinfo.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>AppStoreFileSize</key>
<integer>4329818</integer>
<key>ApplicationProperties</key>
<dict>
<key>ApplicationPath</key>
<string>http://myserver.com/Apps.ipa</string>
<key>CFBundleIdentifier</key>
<string>com.app.app</string>
<key>IconPaths</key>
<array>
<string>http://myserver.com/icon.png</string>
<string>http://myserver.com/icon.png</string>
<string>http://myserver.com/icon@2x.png</string>
<string>http://myserver.com/icon-72.png</string>
</array>
<key>SigningIdentity</key>
<string>CSR Certificate</string>
</dict>
<key>ArchiveVersion</key>
<integer>2</integer>
<key>CreationDate</key>
<date>2012-10-10T09:02:39Z</date>
<key>Name</key>
<string>AppName</string>
<key>SchemeName</key>
<string>AppName</string>