Windows 8 Phone Client Certificate HTTPS authentication

前端 未结 2 1922
一生所求
一生所求 2021-02-08 17:33

I am trying to access a secure HTTPS server using client certificate from a Windows 8 Phone app I am developing. This does not work at all which has has made me try to access th

相关标签:
2条回答
  • 2021-02-08 17:50

    Take a look at Frame 6. The Nokia is not sending the certificate. This corresponds to the error_log messages showing the certificate is missing: peer did not return a certificate.

    I have seen this issue when the server is missing the certificate chain that issued the client certificates. I believe the error_log is saying as much: [Hint: No CAs known to server for verification?]

    The server sends the client the CAs it trusts. The client sends back messages using client certs issued by those CAs.

    0 讨论(0)
  • 2021-02-08 18:01

    I know this is late, but according to this msdn article client certificates are not supported in Windows Phone 8.

    0 讨论(0)
提交回复
热议问题