How do I access an XML file on another server?

wxdqz

New Member
I have an ASP which loads an XML file on another server within my intranet:(or at least if it would load it would work!)The ASP:set xml = Server.CreateObject("Microsoft.XMLDOM")xml.async = true'N.B. doesn't work when async=falsexml.load("http://theservername.com/doc.xml")'Even tried with the port number!'xml.load("http://theservername.com:8080/doc.xml")The XML doc is well formed, validates against a DTD etc and links to an XSL-I get it all working on Personal Web Server using:xml.load(Server.MapPath(xml_file))But no luck when the XML sits on another server! I managed to get rid ofthe error messages generated by MSXML (there was an error downloading item)but now I get no error but also no data!!Please help- it's driving me mental!Thanks,Rich
 
Back
Top