我想询问是否有任何方法可以从soap请求中检索数据?我知道这个问题可能经常被问到。但是我找不到适合我的问题的好答案。 这是我的要求:
<soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<ns1:getFruit soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<aGetFruitRequest href="#id0"/>
</ns1:getFruit>
<multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:GetFruitRequest">
<name xsi:type="xsd:string">apple</name>
<type xsi:type="xsd:string">fruit</type>
</multiRef>
</soapenv:Body>
我想获得标签'name'和'type'中的'apple'和'fruit'值。在java中有没有办法做到这一点?
由于