I have been asked to support a Common Access Card (CAC) as a method to logon and then it it fails default to username/password.
I have been able to request the clients certificate by usingHttpClientCertificate cs = Request.ClientCertificate;
string entireSubjectLine = cs.Subject.ToString();I can then parse and retrieve the CAC Unique ID - how to I now use that information to login my site?
↧