On my online news site I need to be able to retrieve information from a remote xml page that updates every day. The script (which is being used by several sites in our area) works fine when I test it locally, but when I test it on my nt server (I lease server space from another company) I get the following error.
error '800c0007'
/test/start.asp, line 571
Line 571 is the line in my script that defines the remote url. I have the relevant parts of the script below. The network admins (server people) have been working on this for a week and they blame the xml data provider. But it works on my local system (which is only using PWS). Is this me or them? Am I doing something wrong? Any comments would be appreciated.
Complete script:
<%
Dim XML
Set XML = Server.CreateObject("msxml"
XML.URL = "
Dim readings
Set readings = XML.root.children
Dim station
Set station = readings.item(0)
%>
<font size="1">Last modified on <% Response.Write(station.children.item("date".text)%></font></font></i><font color="#00ff00"><br>
<font size="1"><b>Elevation: <% Response.Write(station.children.item("elevation".text)%>
ft msl</b></font><br>
<font size="1">Minimum Temperature: <% Response.Write(station.children.item("min_temp".text)%>º</font><br>
<font size="1">Maximum Temperature: <% Response.Write(station.children.item("max_temp".text)%>º</font>
error '800c0007'
/test/start.asp, line 571
Line 571 is the line in my script that defines the remote url. I have the relevant parts of the script below. The network admins (server people) have been working on this for a week and they blame the xml data provider. But it works on my local system (which is only using PWS). Is this me or them? Am I doing something wrong? Any comments would be appreciated.
Complete script:
<%
Dim XML
Set XML = Server.CreateObject("msxml"
XML.URL = "
Dim readings
Set readings = XML.root.children
Dim station
Set station = readings.item(0)
%>
<font size="1">Last modified on <% Response.Write(station.children.item("date".text)%></font></font></i><font color="#00ff00"><br>
<font size="1"><b>Elevation: <% Response.Write(station.children.item("elevation".text)%>
ft msl</b></font><br>
<font size="1">Minimum Temperature: <% Response.Write(station.children.item("min_temp".text)%>º</font><br>
<font size="1">Maximum Temperature: <% Response.Write(station.children.item("max_temp".text)%>º</font>