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

サーバーにはクライアント証明書が必要です。この証明書は、マシンまたはブラウザに追加する必要があります。サーバーの管理者がすべての詳細を提供します。

また:これを参照してください

于 2010-02-17T21:58:49.857 に答える