开发者

XML and ServerXMLHTTP problem

Error Type:
msxml3.dll (0x80072F0C)
A certificate is required to com开发者_开发技巧plete client authentication 

I am sending an XML file to a remote server

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

Any help out there?


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜