Client Certificate with IIS 7

I have a client who wants to secure a connection to his application using a client certificate. He does not want to match the certificate with the login.

He does not want to buy a certificate from a trusted CA and wants me to provide him with my own self-signed certificate.

I followed the steps from this article: http://asoftwaredeveloper.wordpress.com/2011/12/30/x-509-certificate/ (every time I search on Google I end up with this)

I managed to create two certificates and install them both on the client and on the server.

However, I still get the same 403.7 error.

Does anyone have a real step-by-step guide with ALL the steps? Am I the only one who wants to do such a simple thing? Why is this not described in the documentation?

+5
source share
1 answer

Here is a step by step:

  • Create your CA
  • Create client certificates and add them to CA
  • Open MMC (Windows 7 just enter MMC in the dialog box)
  • Click file> add / remove snap-in ...
  • Click certificates, then add
  • When prompted, select a computer account
  • When prompted, select the local computer
  • Double click on certificates
  • Click Trusted Root Certification Authorities
  • Click on certificates
  • Click a few more steps> import
  • Find and select your CA 13 root certificate. Open Internet Services Manager.
  • Click on your server
  • Click Server Certificates
  • Import CA Certificate
  • Click on your site
  • Click on the binding
  • Add new for https
  • Be sure to select a CA certificate
  • "".
  • " SSL"
  • SSL
  • ( )
  • IIS ( , )
  • https://, http://
    • CA, CA .
+2

All Articles