0

We have ASP.Net generic handlers that support HTTPS requests only.

Example: https://{domainname}/userservice/getfriends.ashx

Please suggest a solution for processing the https requests in Winows Phone 7.1 using HttpWebRequest. When I am binding the https images (for example https://{domainname}/userserivce/23232.jpg only), it's raising the error.

John Conde
  • 217,595
  • 99
  • 455
  • 496

1 Answers1

2

Is your SSL certificate signed by a Root Certification Authority trusted by Windows Phone (example: Verisign) or is it a self-signed certificate?

If it's not from a valid trusted root certification authority, export the signing root certificate, send it by email to the device, and then install the certificate; check this answer for more info.

Community
  • 1
  • 1
Pedro Lamas
  • 7,185
  • 4
  • 27
  • 35