I have an iOS Enterprise account. I attached the security file as a link, as well as my plist, using the itms-services protocol. I am working on Ubuntu 10.04 LTS with an Apache2 server. I have already added Mime types to /etc/mimes.types. When I follow the magazine, I see that this sentence is reset, no problem, and plist itself can, but when I use my iPad to pull out the application by clicking on the link to the links to service objects, it seems to let me download it. He keeps telling me that he cannot connect to the url inside the iOS popup.
I use this link (with a missing domain name):
<a href="itms-services://?action=download-manifest&url=https://server.com/apps/StockCountApp.plist"> Install Stock Count Application</a>
Here is my 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://server.com/apps/StockCountApp.ipa</string> </dict> </array> <key>metadata</key> <dict> <key>bundle-identifier</key> <string>com.server.StockCountApp</string> <key>bundle-version</key> <string>0.0.1</string> <key>kind</key> <string>software</string> <key>title</key> <string>StockCount</string> </dict> </dict> </array> </dict> </plist>
I can get to plist using https, and I can use the IPA link inside plist to also get IPA without problems, but for some strange reason, I cannot get IPA using itms protocol using iDevice.
Does anyone know how to solve this problem?
source share