I new to web services response handling techniques. I have the soap response below, from which I want to get the UID value.
<Envelope xmlns:SOAP-ENV = "" SOAP-ENV:encodingStyle = "">
<Body xmlns:m = "">
<CreateUser>
<m:status>SUCCESS</m:status>
<m:code>1</m:code>
<m:uid>1234t</m:uid>
</CreateUser>
</Body>
</Envelope>
I tried this xpath traversal:
/Envelope/Body/CreateUser/m:uid
which yields:
<m:uid>1234t</m:uid>
I need just 1234t
.