I am trying to install SSMS on my Windows 10 machine. However, any version 18.0 or greater gives me an error: > A certificate was explicitly revoked by its issuer (0x800B010C). With version 18.0, the installer executable lists a revoked certificate in its properties, but the newer versions do not. [...] read more
In the MSDN Example of the ICertificatePolicy interface, there is an enum which lists all the possible status error codes that can be returned via the ValidationCallback: public enum CertificateProblem : long { CertEXPIRED = 0x800B0101, CertVALIDITYPERIODNESTING = 0x800B0102, CertROLE = 0x800B0103, CertPATHLENCONST = 0x800B0104, CertCRITICAL = 0x800B0105, CertPURPOSE = [...] read more
I am trying to install SSMS on my Windows 10 machine. However, any version 18.0 or greater gives me an error: "A certificate was explicitly revoked by its issuer (0x800B010C). With version 18.0, the installer executable lists a revoked certificate in its properties, but the newer versions do not. I [...] read more
I have WCF REST web service hosted by IIS, it works on HTTPS, I generate Certificate on IIS and assign Https to a port I generate cer through IE browser. I create a test application and regardless Add a client certificate or not or even add a wrong certificate the [...] read more