Is it possible to connect to a secure site using XMLHTTP which I understand
to be part of MSXML2.XMLHTTP60?
I understand I may need extra code but currently am doing the following in
Access 2007 VBA:
....
Dim xmlhttp As New MSXML2.XMLHTTP60
Set xmlhttp = New XMLHTTP60
xmlhttp.Open "POST", "https://xmlgw.aURL.com", False
xmlhttp.Send xmlDoc.XML
Changing the "https" to "http" allows the code to work while if I change
this it hangs the module.
Thanks in advance for any help.
Mark