show/hide this revision's text 2 Add some debugging tips.

The client

There's no difference in the CertificateRequest message sent by a server when the certificate is merely requestedat , rather than required. The server makes the SSL levelsame request in both cases, not and simply terminates the HTTP protocol running on top of that transporthandshake when a client fails to provide a required certificate. Are Thus, if your browser appears to be ignoring "requests", it should appear to ignore "requirements" too.

Check for the following:

  • Is your browser configured to ignoreall certificate requests, neversending one?
  • Is your browser configured to use agiven certificate without promptingthe user? (In other words, how do you sure know that you have enabled the request (but not requirementbrowser isn't sending a certificate?)for client certificates in such
  • Is your server actually requesting acertificate?
  • The way that it follows I test this last case is with the standard OpenSSL (and also available in Cygwin) tool:

    openssl s_client -connect server.y.com:443 -msg

    After the server sends its Certificate message, it will insert a CertificateRequest method which is absent if it is not with some IIS/IE-specific collusion)?

    Firefox 2 and 3 honor these requestsrequesting client authentication. What browsers have you found than ignore The s_client output looks like this:

    <<< TLS 1.0 Handshake [length 0008], CertificateRequest    0d 00 00 04 01 01 00 00

    I'm not sure how it works if the server uses client authentication only on specific paths, because the initial SSL handshake is complete before the client transmits the HTTP request. It would be reasonable for the server to request a mere new handshake at this point, but I've never tested to see what servers support this.

    You can fake an HTTP request via s_client by default?hand, entering:

    GET /your/path/here HTTP/1.1[Enter]Host: server.y.com:443[Enter]

    If you never see a CertificateRequest message at all, your server isn't set up correctly.

    403.7 is not an HTTP status code. Is that some Microsoft "embrace, extend, and extinguish" subterfuge? In any case, it doesn't sound like the right direction to pursue, since this is a transport layer problem, not an application layer problem.

    show/hide this revision's text 1

    The client certificate is requested at the SSL level, not the HTTP protocol running on top of that transport. Are you sure that you have enabled the request (but not requirement) for client certificates in such a way that it follows the standard (and not with some IIS/IE-specific collusion)?

    Firefox 2 and 3 honor these requests. What browsers have you found than ignore a mere request by default?

    Specifying security constraints based on directory structure is quite common and can actually simplify administration of security nicely. Don't feel bad about it if this offers a solution for you.

    403.7 is not an HTTP status code. Is that some Microsoft "embrace, extend, and extinguish" subterfuge?