Hola
mc_quake, aquí te dejo esto aunque me parece que te puedes evitar la llamada xmlHTTPRequest utilizando el método Load del objeto xmlDOM en lugar de LoadXML que carga un string, puedes probar, esto funciona por el momento:
Código asp:
Ver originalset xml = Server.CreateObject("Microsoft.xmlHTTP")
Dim unValorX
xml.open "POST", "http://www.inning.cl/js-local/indicadores.xml", false
xml.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
xml.send (orderString)
xmlResponseStr = xml.responseText
set xmlDoc = Server.CreateObject("Microsoft.xmlDOM")
xmlDoc.async = True
xmlDoc.LoadXML(xmlResponseStr)
Set nodo = xmlDoc.SelectSingleNode("fdata")
for each child in nodo.childNodes
if lcase(child.nodeName) = "dolar_observ" then
unValorX = child.text
end if
next
Set xmlDoc = Nothing
Set xml = nothing
Response.Write("Este es mi valor X: " & unValorX)
Saludos