xmlHttp、XML 请求、asp
只是为了确认 当使用 asp 将 XML 数据发送到 https://www .site.com 时,我得到 msxml3.dll (0x80072F0C) 需要证书来完成客户端身份验证 我与 https://www .site.com IT 人员交谈,他们说他们无需提供任何证书即可安装。 正确吗?
这是函数
Set xmlhttp = Server.CreateObject("MSXML2.ServerXMLHTTP") xmlhttp.open "POST", url, false 'xmlhttp.setRequestHeader“CONTENT_TYPE”,“文本/xml” xmlHttp.setRequestHeader“内容类型”,“application/xhtml+xml” '“应用程序/x-www-form-urlencoded”; xmlhttp.发送 docSubmit
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能会有所帮助:http://support.microsoft.com/kb/302080
“对于来自 Web 服务器的任何 SSL 请求,ServerXMLHTTP 都希望安装客户端数字证书,即使目标 Web 服务器不需要客户端证书。”
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."