I try to create an object of type MSXML2.XMLHTTP.6.0
but when i call the method Open I get an error :
Object doesn't support this property or method.
Here is my code:
set objXmlHttp = server.CreateObject("MSXML2.XMLHTTP.6.0")
objXmlHttp.Open "POST", strURL , false
I have tried using the TLS 1.2 but the same thing happens.
The strURL
variable receives an address with HTTPS.
Any suggestions?