I am using HTTPWebRequest to access a page which needs Client Certificate!

I am using the following code and everything works!

    HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(textBox1.Text);

    X509Certificate2 userCert = SelectClientCertificate();
    if (userCert != null) myReq.ClientCertificates.Add(userCert);

    HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();

Now here is my problem, since my call SelectClientCertificate() shows a Dialog to let the user select a Certificate, I don't want to show the Dialog if the Server doesn't ask for a Client Authentication! Actually I am looking for the behaviorism of Internet Explorer. If accessing a page for which the server needs a user client authentication, you get the Certificate select dialog shown otherwise not!

I looked at the AuthenticationManager but I am not sure if I really need to register my own AuthenticationModule! so any hint for me?

I also checked the the StatusCode for 403 or 403.7 but the server for now that I am working with, will also return 200 in case of missing Certificate, with content saying that I am not authorized!

link|improve this question

45% accept rate
feedback

1 Answer

Why do you want to check what the server wants? It the request runs over https, just ask for certificate.

If I remember well, the server is not obliged to anyone for anything. It is the clients' duty to begin the communication with SSL handshake and the client/server exchange their certificates BEFORE any real HTTP communication occurs. There is no way for you to detect if the server "requires" you to provide a certificate. If you try to talk to it, and if you don't start with a cert and if the server wants cert, the server will drop the connection and remain silent, or maybe it will return some random error code.

You can try to early detect if the server tries to do a handshake before trying to create/send a request to it, but you'd have to do it a layer below, at the TCP layer. Try checking the RFCs describing HTTPS negotation or the preable of handshakes, maybe that will help you a little.

Or just try doing a HTTP w/o S request and if it fails, redo with asking for certificate and retry with HTTPS. I think your users will survive it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.