在此SOAP XML文件中,如何使用XPath查询获取7
?
<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>
此XPath查询无效//*[name () ='soap:Body']
。
答案 0 :(得分:22)
如果您设置了名称空间前缀,则可以使用它,例如:
//soap:Body
但是,由于您尝试使用默认命名空间而没有前缀的节点使用普通XPath,因此您只能通过local-name()
和namespace-uri()
访问它们属性。例子:
//*[local-name()="HelloWorldResult"]/text()
或者:
//*[local-name()="HelloWorldResult" and namespace-uri()='http://tempuri.org/']/text()
或者:
//*[local-name()="HelloWorldResponse" and namespace-uri()='http://tempuri.org/']/*[local-name()="HelloWorldResult"]/text()
对于你的xml,他们都会给出相同的结果,即文本7
。