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
有任何帮助吗?