[Home] [By Thread] [By Date] [Recent Entries]

  • To: xml-dev@l...
  • Subject: XPath problem with selectSingleNode in MSXML4
  • From: John Sands <wonkowatson@y...>
  • Date: Sun, 7 Apr 2002 20:46:04 -0700 (PDT)

I have a file called config.xml like this:

 <?xml version="1.0"?>
 <config>
  <link href="tree.asp"/>
  <link href="search.asp" default="true" />
 </config>

This Javascript ASP code finds the href with the "default=true" attribute:

 var xmldoc = new ActiveXObject("MSXML2.DOMDocument.4.0");
 xmldoc.async = false;
 xmldoc.load(Server.MapPath("config.xml"));
 xmldoc.setProperty("SelectionLanguage", "XPath");
 var defaultpage = xmldoc.selectSingleNode("/config/link[@default]");
 var href = defaultpage.getAttribute("href");

My question is, why doesn't this code find it as well?

 var xmldoc = new ActiveXObject("MSXML2.DOMDocument.4.0");
 xmldoc.async = false;
 xmldoc.load(Server.MapPath("config.xml"));
 xmldoc.setProperty("SelectionLanguage", "XPath");
 var href = xmldoc.selectSingleNode("/config/link[@default]/@href");

Thanks,
John Sands

__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member