Error : msxml3.dll (0x80072F0C) A certificate is required to complete client authentication
-
Hi All, I am generating a xml using asp and posting to a https link. For posting I am using MSXML2.ServerXMLHTTP.3.0 object. But, it is giving the following error while sending the xml to https link "msxml3.dll (0x80072F0C) A certificate is required to complete client authentication" In Microsoft this is confirmed as a bug for MSXML version 2.0. But, I am using the MSXML version3.0. Also I installed the certificate(which I got from the server) in IIS properly(MSDN documentation). var SXH_OPTION_SELECT_CLIENT_SSL_CERT = 3; oHTTP = new ActiveXObject("MSXML2.ServerXMLHTTP.3.0"); oHTTP.open("POST", strUrl,"False","username","pwd"); oHTTP.setOption(SXH_OPTION_SELECT_CLIENT_SSL_CERT,"LOCAL_MACHINE\\Other People\\certname"); oHTTP.setRequestHeader("Content-Type", "text/xml"); oHTTP.send(strXMLStream); strTemp = oHTTP.responseText; oHTTP = null; I searched in google and got many information and tried out maximum all the options but still I am getting the same error :( How can I send the xml to a https link using MSXML object and get the response? I am using IIS6.0 on windows 2003.