I cant figure out how to load XML from another server. I am using this code and it is producing this error: “No data is available for the requested resource” although when I view it in my browser it works fine and I see all data.
<%
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
Set objLst = Server.CreateObject("Microsoft.XMLDOM")
Set objHdl = Server.CreateObject("Microsoft.XMLDOM")
objXML.async = False
objXML.Load ("http://site.com/dynamic_xml_file.aspx")
%>