이 SOAP XML 파일에서 XPath 쿼리를 사용하여 7
을 얻는 방법은 무엇입니까?XPath를 사용하여 기본 네임 스페이스 (네임 스페이스 접두사 없음) 요소 가져 오기
<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']
. 네임 스페이스 접두사가 설정되어있는 경우
추출하려는 것은 무엇입니까? –
은 문제가되지 않습니다 – user2411903
<. 그러나 문제는 아닙니다. 숫자 7을 원합니다. – user2411903