Trying to create a distribution for testing. When the link is clicked in safari on the ios device nothing happens (literally. No errors). We are using an enterprise cert and a universal distribution profile. The mime types are correct and everything worked great until we moved to a new folder on the web server. Please help. If there's a way to see what the error is in safari that would be a good start.
Here's the relevant code.
html
<html>
<head>
<title>
test
</title>
</head>
<body>
<center>
<h1>Test</h1>
<a href=itms-services://?action=download-manifest&url=http://uri/app.plist>Install</a>
</center>
</body>
</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>http://uri/app.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>appId</string>
<key>bundle-version</key>
<string>1</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>apptitle</string>
</dict>
</dict>
</array>
</dict>
</plist>
edit
wiping the iPad in question seems to work, but this isn't really a viable solution if it happens to a personal device. Any other possible solutions?