Domanda

Error Type:
msxml3.dll (0x80072F0C)
A certificate is required to complete client authentication 

io mando un file XML a un server remoto

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

Qualsiasi aiuto là fuori?

È stato utile?

Soluzione

Il server richiede un certificato client. Questo certificato deve essere aggiunto alla macchina o al browser. L'amministratore del server avrà tutti i dettagli per voi.

Inoltre: vedi questo

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top