Two more possible solutions if you can use RDP in your roles.
- Change the configuration manually in the c: \ Config directory.
- Create the corrected DLL to solve this problem and manually load it through RDP. The workaround can be hard-bound strings or put code to accept expired certificates. For example:
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; }; ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
(hint for AlexNS on MSDN forums for idea # 2 and Jason Vallery for certificate verification callback code)
As noted in the comments, disabling HTTPS and / or ignoring certificate verification errors can compromise the security of your messages. So think before you do this, and change it as soon as Microsoft fixes this problem.
Brian Reischl Feb 22 '13 at 22:34 2013-02-22 22:34
source share