<?xml version="1.0" encoding="UTF-8" ?>
<BO xmlns="http://hg.com/bo"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://hg.com/bo http://hg.com/bo.xsd">
<b>Harsh</b>
</BO>
I am trying to read Harsh present inside tag using XPath.
When the namespace is not present, I can use this javascript line
var path = "/BO/b";
var nodes=xml.evaluate(path, xml, null, XPathResult.ANY_TYPE, null);
What change should I make in the path so that I am able to fetch the node b?