Applying xpath on XML where namespaces are with children with XOM
问题 I'm using XOM library to parse xmls. I have the following XML <ns4:parent xmlns:ns4="http://sample.xml.com/ns4"> <ns4:child1 xmlns:ns1="http://sample.xml.com/ns1" xmlns:xsi="http://sample.xml.com/xsi"> <ns1:child2>divaStatus</ns1:child2> <xsi:child>something</xsi:child> </ns4:child1> </ns4:parent> And I want to apply a xpath like ns4:parent/ns4:child1/ns1:child2 . So my code is like below Document doc = new Builder().build(inStream); //inStream is containing the xml XPathContext xc =