Getting elements with default namespace (no namespace prefix) using XPath

user2411903 picture user2411903 · May 23, 2013 · Viewed 19.2k times · Source

In this SOAP XML file, how can I get the 7 on a using a XPath query?

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
                            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <HelloWorldResponse xmlns="http://tempuri.org/">
           <HelloWorldResult>7</HelloWorldResult>
        </HelloWorldResponse>
    </soap:Body>
</soap:Envelope>

This XPath query is not working //*[name () ='soap:Body'].

Answer

acdcjunior picture acdcjunior · May 23, 2013

If you have a namespace prefix set, you could use it, like:

//soap:Body

But since the nodes you are trying to get use a default namespace, without a prefix, using plain XPath, you can only acesss them by the local-name() and namespace-uri() attributes. Examples:

//*[local-name()="HelloWorldResult"]/text()

Or:

//*[local-name()="HelloWorldResult" and namespace-uri()='http://tempuri.org/']/text()

Or:

//*[local-name()="HelloWorldResponse" and namespace-uri()='http://tempuri.org/']/*[local-name()="HelloWorldResult"]/text()

To your xml, they will all give the same result, the text 7.