Posted on: 12/14/2013 12:51:23 AM | Views : 919

this is the code that i use to set Accept Client Certificates. 
var siteName = string.Format("{0}_{1}", RoleEnvironment.CurrentRoleInstance.Id, "Web"); var config = server.GetApplicationHostConfiguration(); var accessSection = config.GetSection("system.webServer/security/access", siteName); accessSection["sslFlags"] = @"SslNegotiateCert"; server.CommitChanges(); it works, but there is an issue.
The problem is when I set my website to Accept Client certificate,  IE, Chrome, ect always promt to ask for the certificate.

basically i want to set SslNegotiateCert but don't want IE,Chrome, firefox to promt it. This is use for server to server call on one of the 10 web apis only



Go to the complete details ...