The DomNode class / xml.DomNode methods |
Returns a DomNodeList object containing all DomNode objects matching an XPath 1.0 expression.
selectByXPath( expr STRING, NamespacesList ...) RETURNING list xml.DomNodeList
Returns a DomNodeList object containing all DomNode objects matching an XPath 1.0 expression; expr is the XPath 1.0 expression, NamespacesList is a list of prefixes bounded to namespaces in order to resolve qualified names in the XPath expression. This list must be filled with an even number of arguments, representing the prefix and it corresponding namespace.
selectByXPath( "../../d:Record/*[last()]", "d", "http://defaultnamespace") selectByXPath( "ns:Record", NULL) selectByXPath( "ns1:Records/ns2:Record", "ns1", "http://namespace1", "ns2", "http://namespace2")
selectByXPath("ns1:Record", "ns1") is invalid because the namespace definition is missing.
If the namespaces list is NULL, the prefixes and namespaces defined in the document itself are used if available.
A namespace must be an absolute URI (ex 'http://', 'file://').
In case of error, the method throws an exception and sets the STATUS variable with the appropriate error number.