asp xml, como soluciono este problema

10/05/2006 - 17:05 por Mark | Informe spam
habro un archivo xml con el siguiente codigo

urlxml= "http://www.dominio/datos.xml"


sScript = Request.ServerVariables("SCRIPT_NAME")
Dim xmldoc,nodeList,node,i,j ,xmlHttp,RSSXML
Set xmlHttp= Server.CreateObject("Microsoft.XMLHTTP")
xmlHttp.Open "Get", UrlXML, false
xmlHttp.Send()
Set xmldoc = Server.CreateObject("Microsoft.XMLDOM")
xmldoc.async = false
xmldoc.loadXML ( xmlHttp.ResponseXML.xml )
if xmldoc.parseError.errorCode=0 Then


para unos servidores los archivos xml los hable bien
otros de otro servidor no los habre, me sale error. pero los habro con el
explorador y los reconoce como bien formados

que sera el error?

gracias por la ayuda
 

Leer las respuestas

#1 Nuno Santos
10/05/2006 - 17:30 | Informe spam
Tenta con:
Set xmlHttp= Server.CreateObject("Msxml2.XMLHTTP")
en vez de
Set xmlHttp= Server.CreateObject("Microsoft.XMLHTTP")


NS


Nuno Santos
nunos7[REMOVER]@hotmail.com

"Mark" wrote in message
news:
habro un archivo xml con el siguiente codigo

urlxml= "http://www.dominio/datos.xml"


sScript = Request.ServerVariables("SCRIPT_NAME")
Dim xmldoc,nodeList,node,i,j ,xmlHttp,RSSXML
Set xmlHttp= Server.CreateObject("Microsoft.XMLHTTP")
xmlHttp.Open "Get", UrlXML, false
xmlHttp.Send()
Set xmldoc = Server.CreateObject("Microsoft.XMLDOM")
xmldoc.async = false
xmldoc.loadXML ( xmlHttp.ResponseXML.xml )
if xmldoc.parseError.errorCode=0 Then


para unos servidores los archivos xml los hable bien
otros de otro servidor no los habre, me sale error. pero los habro con el
explorador y los reconoce como bien formados

que sera el error?

gracias por la ayuda

Preguntas similares