私はXPathを初めて使用しています。私は次のSOAP応答を持っています:XPathを使用したSOAP応答の解析Java
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<addParentResponse xmlns="urn:JadeWebServices/NetsuiteCustomer/">
<addParentResult>Organisation xxxxx already exists - use UpdateParent method instead</addParentResult>
</addParentResponse>
</soap:Body>
</soap:Envelope>
"addParentResult"の価値を誰かに教えてください。
よろしく、 Anirban。
/soap:Envelope/soap:Body/parentns:addParentResponse/parentns:addParentResult/text()
私は、XPathにparentns
を追加した理由は、あなたのXMLが名前空間を持っており、あなたのXPathプロセッサは、それらについて知っておくべきことです。
はあなたのために、以下の回答作業をしましたか? – SomeDude