Parsing XML and retrieving value.
how do i parse the following XML and retrieve the value AAAA:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<m:ZWsSecutiry xmlns:m=\"urn:sap-com:document:sap:soap:functions:mc-style">
<TransactionType>AAAA</TransactionType>
</m:ZWsSecutiry>
</SOAP-ENV:Body>"
</SOAP-ENV:Envelope>
I have this XML in a variable. How do i get the value of TransactionType AAAA.
|