I was able to send a webrequest by soapUI which gives me data in XML format as response .I want to insert the value of xml tag in database tables.
This is what I have t
Because your data is in a CDATA block, it is treated as a String (and then needs to be re-parsed as it is XML)
// Parse the xml
def xml = new XmlSlurper().parseText(response)
// Get the cdata text
def cdata = xml.Body.executeXMLQueryResult.return.rowset.text()
// Re-parse it
def innerXml = new XmlSlurper().parseText(cdata)
// Then iterate the rows
innerXml.Row.each { row ->
println row.Column0.text()
}