English 中文(简体)
马达加斯加
原标题:MDM OTA: Last profile in iDevice enrollment
  • 时间:2012-05-11 07:52:24
  •  标签:
  • ios
  • mdm
  • ota

I meet a problem when install last profile on device, the console complains: Underlying error: MDM com.company.com.mdm5: The MDM payload com.company.com.mdm5 contains an invalid topic.

I think mybe I input the wrong topic value, I tried following value, but all failed. 1. the UID of Developer cert s Subject. 2. the "application-identifier" value in my .mobileprovision file

任何建议? 提前感谢。

The SCEP cert was successfully issued from the device, my profile is generated by iPCU. blow is part of my target profile:

<dict>
                    <key>AccessRights</key>
                    <integer>8191</integer>
                    <key>CheckInURL</key>
                    <string>https://192.168.0.105/cgi-bin/checkin.py</string>
                    <key>CheckOutWhenRemoved</key>
                    <true/>
                    <key>IdentityCertificateUUID</key>
                    <string>000000-0000-0000-0000-0000</string>
                    <key>PayloadDescription</key>
                    <string>Configures MobileDeviceManagement.</string>
                    <key>PayloadIdentifier</key>
                    <string>com.company.com.mdm5</string>
                    <key>PayloadOrganization</key>
                    <string>Company</string>
                    <key>PayloadType</key>
                    <string>com.apple.mdm</string>
                    <key>PayloadUUID</key>
                    <string>7AF006C2-E2BC-4606-8C3B-29A9C421F62D</string>
                    <key>PayloadVersion</key>
                    <integer>1</integer>
                    <key>ServerURL</key>
                    <string>https://192.168.0.105/cgi-bin/server.py</string>
                    <key>SignMessage</key>
                    <false/>
                    <key>Topic</key>
                    <string>com.apple.pineapple</string>
                    <key>UseDevelopmentAPNS</key>
                    <true/>
            </dict>
问题回答

该专题应当探讨这样的问题:

com.apple.mgmt.External.b503419d-1e2a-a60f-7451-5b8832b5a9cb

你可以发现这一点,看一下为您的DM服务提供 Apple果的APNS证书的主题(公开显示证书细节)。

用于在MDM系统中录制一个装置的简介中包含一个“专题”示意图。 该装置不会对MDM的推动通知做出反应,除非该证明标的用于发送通知的标的与入学主题相符。

所有专题都必须从 com.apple.mgmt开始,但是,它们必须符合你的MDM推介证书。

如果贵国企业开发商账户有多个用户,则宁愿使用代理人账户来创建APNS证书,并核实APNS证书的主题应包含com.apple.mgmt.External.b503419d-1e2a-a60f-7451-5b8832b5a9cb

首先,你必须提出附有正确数据和格式的证书申请。 之后,你会照你的身份。 apple.com账户,并上载这一证书要求,此后,Apple(通过浏览器下载)将一份签名的推介证书寄回(由浏览器下载)。 这包括一个如山东所描述的有效议题。 这是你必须制作/参加入学情况的主题。 当你将指挥一个装置时,以前的驾驶证明书专题和入学情况的主题必须一致,否则,这个装置不会听你的指示!





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签