0
我正在嘗試將一些XML抽取到舊網站的經典ASP中。在經典ASP中讀取XML
我可以使它適用於一個例子,但不是另一個例子。我想知道是否有人能讓我知道我需要做些什麼才能讓它們都運行。提前致謝。
工作實施例
Dim o2, oXML2
Set oXML2 = Server.CreateObject("Msxml2.DOMDocument.6.0")
Set o2 = Server.CreateObject("Msxml2.ServerXMLHTTP.6.0")
o2.open "GET", "https://api.eveonline.com/eve/CharacterID.xml.aspx?names=BorisKarlov", False
o2.send
xml2 = o2.responseText
oXML2.LoadXML xml2
response.Write oXML2.selectSingleNode("//currentTime").Text
未按例如
Dim o, oXML
Set oXML = Server.CreateObject("Msxml2.DOMDocument.6.0")
Set o = Server.CreateObject("Msxml2.ServerXMLHTTP.6.0")
o.open "GET", "http://api.freelancer.com/User/Properties.xml?id=sulung81", False
o.send
xml = o.responseText
oXML.LoadXML xml
response.Write oXML.selectSingleNode("//url").Text
而且,它不起作用?你得到了什麼?你認爲你應該得到什麼?有沒有錯誤? –
非常感謝您對此的幫助。我收到錯誤:msxml6.dll錯誤'80004005' 嘗試修改只讀節點。 相關的行: oXML.setProperty「SelectionNamespaces」,「xmlns:fl ='http://api.freelancer.com/schemas/xml-0.1'」 – tommarshallandrews