xmlHttp, XML request,asp

江枫思渺然 提交于 2019-12-12 04:24:55

问题


Just to confirm When sending XML data with asp to https://www .site.com I am getting msxml3.dll (0x80072F0C) A certificate is required to complete client authentication I Talk to https://www .site.com IT and they said that they don't have to provide any certificate to install. IS it correct?

here is the function

Set xmlhttp = Server.CreateObject("MSXML2.ServerXMLHTTP") xmlhttp.open "POST", url, false 'xmlhttp.setRequestHeader "CONTENT_TYPE", "text/xml" xmlHttp.setRequestHeader "Content-Type", "application/xhtml+xml" '"application/x-www-form-urlencoded"; xmlhttp.send docSubmit


回答1:


May be helpful: http://support.microsoft.com/kb/302080

"To make any SSL requests from the Web server, ServerXMLHTTP expects a client digital certificate to be installed, even if the target Web server does not require a client certificate."



来源:https://stackoverflow.com/questions/2342274/xmlhttp-xml-request-asp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!