Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
<soap:Envelope>
<soap:Header>
...
</soap:Header>
<soap:Body>
<ns1:Response>
<Object id="id:1234567890">
....
</Object>
</ns1:Response>
</soap:Body>
</soap:Header>
</soap:Envelope>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header>
<capabilities xmlns=........</capabilities>
</soapenv:Header>
<soapenv:Body>
<ibisag:queryRegObjResponse xsi:schemaLocation=.........>
<regObj id="id:obj:a1b2c3d4" objType="type:obj:abc0000">
<rim:Slot name="Author" xmlns:rim=.......>
<rim:ValueList>
<rim:Value>MyName</rim:Value>
</rim:ValueList>
</rim:Slot>
...
...
<rim:Slot name="email" xmlns:rim=".......>
<rim:ValueList>
<rim:Value>a@b.com</rim:Value>
</rim:ValueList>
</rim:Slot>
</registryObject>
</ibisag:queryRegistryRegObjResponse>
</soapenv:Body>
</soapenv:Envelope>
Hi
You can extract the value of a element or an attribute, for example, you can extract the value
MyName
a@b.com
from the element rim:Value, rather than the whole content under the element <soapenv:Body>.
Can you please email me an exmaple of your soap response and let me know what data would you like to extract?
Shong