Specifying Context for XMLNode.selectSingleNode
Hi,
Can we specify the context node from where to start the xmpath search to the XMLNode.selectSingleNode method ?
I tried extracting a specific node & then use that node to invoke the selectSingleNode method, I was expecting that xpath search would happen for tags only within the node on which the selectSingleNode method was invoked , However that does not seem to happen & the xpath search seems to be taking place on the entire xml document.
Xalan provides
public static NodeList selectNodeList(Node contextNode,
java.lang.String str)
Which gives the functionality i am looking for !. Any suggestions as to how i can make the oracle selectSingleNode behave in a similar manner will be highly appreciated.
Thanks
Sudarshan