我正在尝试配置一个简单的网站以要求 IISExpress 上的客户端证书。
我的配置是根据这个归档的jasonrshaver.com帖子。
<site name="XXXX" id="3">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="XXXX" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:65360:localhost" />
<binding protocol="https" bindingInformation="*:44300:localhost" />
</bindings>
</site>
...
<access sslFlags="Ssl, SslNegotiateCert" />
...
<iisClientCertificateMappingAuthentication enabled="true">
</iisClientCertificateMappingAuthentication>
它是一个输出 ClientCertificate 数据的简单 MVC4 Web 应用程序。
问题是当我浏览到 https 时,不会提示我在浏览器中输入证书。我确实有 4 个可以使用的证书;它们是在 Chrome 中配置的
任何帮助表示赞赏。谢谢你。