Hi all
I guess this is more a general Security Certificate question, but is there really any need in using one against a web service if that web service is running over HTTPS?
I have the following code which associates a Cert against a service, and whether I comment out the code or not, I can still access and use the service.
// Get the Certificate from the Windows Certificate Store
//X509Store objStore = new X509Store(StoreName.Root, StoreLocation.LocalMachine);
// Set store instance as read only.
//objStore.Open(OpenFlags.ReadOnly);
// Pull required certificate
//ColCertificates = objStore.Certificates.Find(X509FindType.FindBySerialNumber, X509CertificateSerialNumber, true);
Thanks
Tryst