Получить мыло xmllint xpath - PullRequest
       29

Получить мыло xmllint xpath

0 голосов
/ 02 октября 2018

Мне нужно разобрать, что xml:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
        <soap:Header/>
        <soap:Body> <m:runResponse xmlns:m="http://www">
        <m:return xmlns:xs="http://www.w3.org/2001/XMLSchema"
                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">true;231;470;159;194;1439;476;637;99842;1164</m:return>
</m:runResponse></soap:Body>
</soap:Envelope>

и нужно получить

true; 231; 470; 159; 194; 1439; 476; 637; 99842;1164

Я делаю:

xmllint --xpath "/soap:Envelope/soap:Body/m:runResponse/m:return" out.xml

и получаю результат:

XPath error : Undefined namespace prefix
xmlXPathEval: evaluation failed
XPath evaluation failure

Как я могу это проанализировать?

1 Ответ

0 голосов
/ 02 октября 2018

Использование xmllint:

xmllint --xpath "//*[local-name()='Envelope']/*[local-name()='Body']/*[local-name()='runResponse']/*[local-name()='return']/text()" file.xml

Но я предпочитаю xmlstarlet, что мне несколько проще:

xmlstarlet sel -N soap="http://www.w3.org/2003/05/soap-envelope" -N m="http://www" -t -v '//soap:Envelope/soap:Body/m:runResponse/m:return' file.xml
...