-1

When i tried to call .Net web service http://....using windows 7 API's

Its working fine. But if i used with same web service https://... i got

security error like There is a problem with this website's security certificate.

Help me out for this query...

Vaccano
  • 78,325
  • 149
  • 468
  • 850
  • 6
    You might want to update the question title to an actual title that reflects what you're asking. – ctacke Dec 15 '10 at 16:43

2 Answers2

1

You're probably using a test certificate or other certificate not supported by the phone.

If that's the case then your question is a duplicate of Making a WP7 HttWebRequest POST with an untrusted cert?

The solution to your problem is that you can't and must get a certificate from a trusted root certificate authority.

Community
  • 1
  • 1
Matt Lacey
  • 65,560
  • 11
  • 91
  • 143
1

The site you're accessing needs to have a valid certificate from an issuer recognised by the platform. The latest list of these issuers I've seen is here.

push notifications from authenticated services

Note Geotrust will give you a 30 day trial certificate which is handy for testing.

Update: New documentaiton of trusted certificate issuers.

Mick N
  • 14,892
  • 2
  • 35
  • 41