Link to home
Start Free TrialLog in
Avatar of thomaslim17
thomaslim17

asked on

msxml3.dll error '80072f8f' (System error: -2147012721)

A "msxml3.dll error '80072f8f' (System error: -2147012721)" error was returned when the codes below was run.

It has been working for a long while, but the above problem just surfaced.

AN EXTRACT OF CODES
<%
      strURL = strURL & "&fname=" & "TESTER"
      strURL = strURL & "&lname=" & "01"
      strURL = strURL & "&zip=" & "123456"

      Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP.3.0")

      xmlhttp.open "POST", "https://xxxx.xxxx.com:123", False               'open connection

      call xmlhttp.setRequestHeader ("Content-Type", "application/x-www-form-urlencoded")
       xmlhttp.send strURL

      If Err.Number = 0 Then
          retStr = xmlhttp.responseText
      Else
          retStr = "Url not found"
      End If
      return_message = retStr
                response.write(return_message)
      Set xmlhttp = Nothing
%>
ASKER CERTIFIED SOLUTION
Avatar of rdcpro
rdcpro
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial