xmlHttp、XML 请求、asp

发布于 2024-08-23 06:10:46 字数 479 浏览 5 评论 0原文

只是为了确认 当使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪落纷纷 2024-08-30 06:10:46

可能会有所帮助: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."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文