We have an existing certificate (global sign) that works fine when a Windows Mobile application (.NET 3.5) tried to consume the web service (also written in .NET 3.5) that is hosted on IIS. However the when we make the re-issued certificate (global sign) live, the Windows Mobile application is failing [...] 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
We've been using the same Azure Virtual Network (classic; certificate authentication) for about 2 years now, with little issue. Today, however, remote (P2S) users are getting the error: The certificate's CN name does not match the passed value. (Error 0x800b010f) The S2S connections remain connected. The logs in Azure don't [...] read more
I am trying to connect to a remote server using a secure StreamSocket so when I try to connect I get an exception Windows.Security.Cryptography.Certificates.Certificate certificate = await GetClientCert(); socket.Control.ClientCertificate = certificate; await socket.ConnectAsync(new Windows.Networking.HostName(SocksParameters.Host), SocksParameters.Port, SocketProtectionLevel.Tls12); Why i am getting this exception when i try to ConnectAsync() and how can [...] 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