Have called many restful services from asp before - but this one has me stumped. First my func looks like
Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
with objHTTP
.open "post", x_posturl, False
.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
.send x_xmlstr
end with
and the error returned is
msxml3.dll error '80072f0d' The certificate authority is invalid or incorrect
so, googled a bit and suggestion was to add line
.setOption 2, 13056
this gives error
msxml3.dll error '80072f0c' A certificate is required to complete client authentication
I then contacted service supplier and they suggested
Click on the certificate error next to the address bar, view the certificate, select Details, select Copy to File, and download it to a file. Install that into your trusted certificates on your server to stop the error appearing when trying to submit data.
So, tried that using instructions here - but still no joy, any help appreciated