利用ASP从远程服务器上接收XML数据
<%
dim objXML
dim objRootElement
dim strValue
dim strInetURL
dim strXML
dim item
strInetURL ="
http://pf.inetsolution.com/inetactive2001/inetactive2001news.
xml"
Dim HttpReq
set HttpReq = server.CreateObject("MSXML2.XMLHTTP")
HttpReq.open "GET", "
http://pf.inetsolution.com/inetactive2001/inetactive2001news.
xml", False
HttpReq.send
strXML = HttpReq.responseText
Set objXML = Server.CreateObject("Msxml2.DOMDocument")
objXML.validateonparse = true
objXML.async=false
objXML.loadXML(strXML)
if objXML.ParseError.errorCode <> 0 then
Response.Write("Error: " &;amp; objXML.parseError.reason &;amp; "<br>")
Response.Write("Code: 0x" &;amp; hex(objXML.parseError.errorCode) &;amp; "<br>")
Response.Write("At Line: " &;amp; objXML.parseError.line &;amp; "<br>")
Response.Write("At pos: " &;amp; objXML.parseError.linePos &;amp; "<br>")
else
set objRootElement = objXML.documentElement
if not isObject(objRootElement) then
Response.Write("no file loaded")
else
Response.Write(objRootElement.childnodes(0).text)
end if
end if
%>
| 感谢原创者的辛勤劳动,希望对您有所帮助,转载请注明原出处。 |
| |
| |