私はこれに従ってアプリをワイヤレスでインストールし、さまざまなブログや投稿をフォローしましたが、エンタープライズディストリビューションを機能させることはできませんでした。
私は次のことをしました。
Index.htmlページ:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>My app</title>
</head>
<body>
<ul>
<a href="itms-services://?action=download-manifest&url=http://10.0.20.600:5151/MyApp.plist">
Install App</a>
</ul>
</body>
</html>
MyApp.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>URL</key>
<string>http://10.0.20.600:5151/MyApp.ipa</string>
<key>display-image</key>
<string>http://10.0.20.600:5151/icon72x72.png</string>
<key>full-size-image</key>
<string>http://10.0.20.600:5151/icon512x512.png</string>
<key>bundle-identifier</key>
<string>com.MyCompany.MyApp</string>
<key>bundle-version</key>
<string>1.0</string>
<key>title</key>
<string>MyAppName</string>
</dict>
</plist>
有効なMIMEタイプ:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".ipa" mimeType="application/octet-stream" />
<mimeMap fileExtension=".plist" mimeType="text/xml" />
</staticContent>
</system.webServer>
</configuration>
MyApp.plistファイルへの完全なアクセス許可が与えられます。
iPadのSafariでhttp://10.0.20.600:5151/index.htmlページを開くと、ページが表示され、[アプリのインストール]をクリックすると*何も実行されません*エラーも何もありません!
誰かがモバイルプロビジョニングファイルをダウンロードすることにも言及したので、index.htmlに以下を追加しました
<a href="http://10.0.20.600:5151/MyApp.mobileprovision">
Install Provisioning File</a>
..しかし、これをクリックすると、「ファイルまたはディレクトリが見つかりません」と表示されます。
誰かが私がここで何が欠けているのか教えてもらえますか?私はこれを機能させるために今半日を過ごしました!