Hi,
How can I turn off certificate revocation for a WCF service's client? The client proxy was generated by wsdl.exe and inherits SoapHttpClientProtocol.
|
|
Hi, How can I turn off certificate revocation for a WCF service's client? The client proxy was generated by wsdl.exe and inherits SoapHttpClientProtocol.
|
||
|
|
|
|
I think you're looking for ServicePointManager.ServerCertificateValidationCallback: Which takes a RemoteCertificateValidationCallback Delegate: http://msdn.microsoft.com/en-gb/library/system.net.security.remotecertificatevalidationcallback.aspx I've never dealt with a revoked certificate (other issues such as expired) before but I'm guessing you'd just do something like:
|
|||
|
|
|
|
You can set certificate validation and revocation options in the config file for your application: http://www.request-response.com/blog/PermaLink,guid,e9bb929b-d0b4-4626-b302-1d2715fc344a.aspx |
||
|
|