Hello,
I'm writing this web service client that gets me the response wrapped in a
SOAP Envelope as follows:
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<env:Header>
</env:Header>
<env:Body>
<employee xmlns="http://something.someone.com">
<employee_name>Srinvias</employee_name>
<emp_no>484020</emp_no>
</employee>
</env:Body>
</env:Envelope>
The mentioned SOAP request comes in as
String.
Can Someone please help me how do I 'extract' the employee xml as a string or Document?
All that I'm interested is:
<employee xmlns="http://something.someone.com">
<employee_name>Srinvias</employee_name>
<emp_no>484020</emp_no>
</employee>
Please help me... I really need this soon...
Thanks,
SriPos.