6

I have the following code.

public void Submit(string XML)
{
ServicePointManager.ServerCertificateValidationCallback = ValidateCertificate;
TestWS.CW serv = new TestWS.CW();
string s = serv.Check(XML);
}

private static bool ValidateCertificate(object sender, X509Certificate cert, X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors)
{
return true;
}

However the code never enters the ValidateCertificate method.... It does if I submit a standard HttpsWebRequest but if I use a webservice it does not work. What am I doing wrong?

coolblue2000
  • 3,796
  • 10
  • 41
  • 62

1 Answers1

7

Stick this in your startup code for your HTTP processing somewhere...

ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };

That does it for me, but I only do THIS for debug builds...

LarryF
  • 4,925
  • 4
  • 32
  • 40