XML和ServerXMLHTTP问题

时间:2010-02-17 21:56:28

标签: xml vb.net post serverxmlhttp

Error Type:
msxml3.dll (0x80072F0C)
A certificate is required to complete client authentication 

我正在将XML文件发送到远程服务器

putUrl =https://www.myweb.com/test/drhandler.php
xml_put = "<?xml version=""1.0""?><subscription id=""" & "14" &"""><status>" &"das" & "</status></subscription>"

Public Function SendBatch(xml_put,putUrl)
   Set xmlhttp = CreateObject("MSXML3.ServerXMLHTTP")
   xmlhttp.Open "PUT", putUrl , False
   xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
   xmlhttp.send(xml_put)

   Set xmlhttp = Nothing
end function

有任何帮助吗?

1 个答案:

答案 0 :(得分:-1)

服务器需要客户端证书。必须将此证书添加到您的计算机或浏览器中。服务器的管理员将为您提供所有详细信息。

另外:请参阅 this