मैं IISExpress पर क्लाइंट प्रमाणपत्रों की आवश्यकता के लिए एक साधारण वेबसाइट को कॉन्फ़िगर करने का प्रयास कर रहा हूं।IISExpress क्लाइंट प्रमाणपत्र सेटअप चरण
मेरे विन्यास http://www.jasonrshaver.com/?tag=/IIS+Express
<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>
के अनुसार है यह एक सरल MVC4 वेब एप्लिकेशन कि ClientCertificate डेटा आउटपुट है।
समस्या यह है कि जब मैं https पर ब्राउज़ करता हूं तो मुझे ब्राउज़र में प्रमाणपत्र के लिए संकेत नहीं दिया जाता है। मेरे पास 4 प्रमाण पत्र हैं जिनका उपयोग किया जा सकता है; वे क्रोम
में कॉन्फ़िगर किए गए हैं किसी भी मदद की सराहना की। धन्यवाद।
यह कोड कहां जा रहा है – Chazt3n