1
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

有什么帮助吗?

4

1 回答 1

-1

The server requires a client certificate. This certificate must be added to your machine or to the browser. The administrator of the server will have all the details for you.

Also: see this

于 2010-02-17T21:58:49.857 回答