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外面有什么帮助吗?
发布于 2010-02-18 05:58:50
服务器需要客户端证书。必须将此证书添加到您的计算机或浏览器。服务器的管理员将为您提供所有详细信息。
另请参阅
https://stackoverflow.com/questions/2284698
复制相似问题