msxml3.dll
I get the following error when trying to connect with SSL:-->msxml3.dll error '800c000e'
A security problem occurred.
or
-->msxml3.dll error '800c0008'
The download of the specified resource has failed.
Object works well using http but fails on https. I'm using the following code:
<%
dim xml
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "POST", "https://myserver/m/default.asp", False
xml.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
xml.Send "myusername=xxxxxx&mypassword=xxxxx"
xml.Open "get", "https://myserver/m/xxx.asp", false
xml.Send
If xml.readyState <> 4 then
xml.waitForResponse 4
End If
if Err.Number <> 0 then
response.write "An error occured"
else
response.write xml.ResponseText
end if
%>
Any help would be greatly appreciated!