我正在尝试为Windows8.1编写MDM DM。文档http://www.microsoft.com/en-us/download/confirmation.aspx?id=36831说,设备应该使用GET命中http://enterpriseenrollment.contoso.com/EnrollmentServer/Discovery.svc,并期望得到如下响应。
Response:
Request Full Url: http://EnterpriseEnrollment.contoso.com/EnrollmentServer/Discovery.svc
Content Type: text/html
Header Byte Count: 248
Body Byte Count: 0
Header:
HTTP/1.1 200 OK
Connection: Keep-Alive
Pragma: no-cache
Cache-Control: no-cache
Content-Type: text/html
Content-Length: 0我让我的windows8.1测试机通过一个代理服务器运行,该代理服务器将url映射到我本地的the服务器上进行测试。一旦它准备就绪,它将被部署在不再需要此代理的地方。我已经将代理证书安装到根信任存储中,以防出现问题。
问题:设备从不向URL http://enterpriseenrollment.contoso.com/EnrollmentServer/Discovery.svc发送POST
我想这可能是因为我的回答不正确。
HTTP/1.1 200 OK
Content-Type: text/html;charset=utf-8
Content-Length: 0
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Connection: keep-alive
Server: thin 1.5.1 codename Straight Razor
Expires: 0
Cache-Control: no-cache发布于 2014-03-25 00:01:53
这是因为服务器上的证书是不可外部验证的。一旦我更改为使用正确的证书,通信就会继续。
https://stackoverflow.com/questions/22311589
复制相似问题