I have a XML Response as below where it contains CDATA as wells as xml element with same name
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetISDResponse xmlns="http://www.webserviceX.NET">
<GetISDResult><![CDATA[<NewDataSet>
<Table>
<code>355</code>
<name>Albania</name>
</Table>
<Table>
<code>355</code>
<name>Albania</name>
</Table>
</NewDataSet>]]></GetISDResult>
</GetISDResponse>
</soap:Body>
</soap:Envelope>
How can i read the value of code and name xml element in soapui Groovy. I have tried all type of suggestions from various blogs but didnt worked out
Also I am using SOAPUI 5.3.0 freeware and not SOAPUI PRO.