Using SSL Client Certificates

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Using SSL Client Certificates

    I am using HTTPS with Apache and ColdFusion MX7. The Apache server is set up to
    require client certificates from a specific CA. I need to find out which client
    certificate the user has used. Is it in any way possible to get
    CGI.CERT_SUBJECT etc to work with Apache? The notes say only IIS and Netscape.
    This should be an easy job, Apache provides many client certificate environment
    variables.

    AlanMcRae Guest

  2. Similar Questions and Discussions

    1. Client Certificates
      Hi all. I'm implementing a Web Service and a Client that comunicate with SSL. The Client has a certificate that load with:...
    2. 403 Error Web App to Web App with Client Certificates
      Hi, I'm trying to write a ASP.NET application that calls another ASP.NET application using the HttpWebRequest class. I need to secure the...
    3. Client Side Certificates for Web Services?
      Part 1: I have a simple web service. I would like to protect the web application by only allowing callers that have a client-side certificate...
    4. ASP.NET and client certificates
      Hi People, I know in IIS Admin you can tick the box to request a client certificate (over an SSL connection), but does anyone know of a way,...
    5. Using client certificates in ASP
      Hi there, I have an ASP page, which have to connect to an SSL server that requires a client certificate, but I get the following error: ...
  3. #2

    Default Re: Using SSL Client Certificates

    If you look at [url]http://httpd.apache.org/docs-2.0/mod/mod_cgi.html[/url], the policy
    seems to be "It's not in the moldy old CGI spec, so we won't return it".

    It seems that you have to compile certificate stuff in yourself.
    It looks like you could add this in mod_nw_ssl.c (Apache 2).

    If you learn how, please post some pointers.
    I'll do the same -- (so far, my bosses haven't needed this functionality).

    Regards,
    -- MikeR


    MikerRoo Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139