Miss XMLDOM
-
Hi I have a ASP page the return a XML from another server (Weather Channel) cuz Flash don't allow get xml files from another site. For this reason I make this script
<% Response.ContentType = "text/xml" Response.Expires = 0 id = Request.Querystring("id") varXMLPage = "http://xoap.weather.com/weather/local/"&id&"?cc=*&prod=xoap&&unit=m&par=1004534660&key=cff7e670386fc9dc" Set mydoc=Server.CreateObject("Microsoft.XMLDOM") mydoc.async=false mydoc.load(varXMLPage) Response.write mydoc.xml %>
Works fine in Win2K, but when I need to used in WinNT4, it didn't works. I don't receive anything. I imagine that could be the XMLDOM object, cuz Microsoft.XMLDOM is MSXML4, and the WinNT4 server could have 3 or lower version. So I tried to change the object to Msxml2.DOMDocument, but it still don't work. Someone know why?? Thanks ---- hxxbin