这可能是一个非常愚蠢的问题但是我已经困扰了好几天了。我已经设置了MDM服务器。然后通过iPCU(iPhone配置实用程序),我推送配置文件,其中包含相关的签入和服务器URL。我还添加了一台安装在我的计算机上的凭证证书,并将其指定为身份。
然后,我将配置文件推送到设备后,出现以下错误...
MDM: Cannot Authenticate. Error: NSError:
Desc : A transaction with the server at https://heshang.abc.lk/MDMServer/checkin has
failed with the status 404.
US Desc: A transaction with the server at https://heshang.abc.lk/MDMServer/checkin has failed with the status 404.
Domain : MCHTTPTransactionErrorDomain
Code : 23001
Type : MCFatalError
Params : (
"https://heshang.abc.lk/MDMServer/checkin",
404
)
我检查了是否可以通过设备访问签到网址。那么是什么导致我得到的这个身份验证错误?这不是SSL错误,因为我通过设备(iPad)访问了MDM服务器,这样做时我没有收到HTTPS错误。
导致此身份验证错误的原因是什么?
答案 0 :(得分:1)
设备在与MDM Server联系时使用HTTP PUT
。您是否可以验证您的Web服务器是否已配置为正确处理/路由HTTP PUT
请求?