Reputation: 1
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.
Upvotes: 0
Views: 547
Reputation: 7233
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.
Upvotes: 2