Hi so im loocking to extract all value from the Rows compenemnt and create variables with it .. here what i did till now any help will be considerable .
And here my xml file
def xml = row.get('HttpResponse'); def AMC = new XmlSlurper().parseText(xml); def allRecords=AMC.Table;
List newAddressList=new ArrayList();
for (int i=0; i < AMC.Columns.size(); i++){
String Id = AMC.Table[i].Rows.Row.Id;
String Text = AMC.Table[i].Rows.Row.Text;
String Highlight = AMC.Table[i].Rows.Row.Highlight;
String Cursor = AMC.Table[i].Rows.Row.Cursor;
newAddressList.add(['Id':Id,'Text':Text,'Highlight':description,'Cursor':Cursor]);
}
data['AddressIndexList'] = newAddressList;`

Columnsand values fromRows, eg[Id:'CA|CP...', Text:'G0E 1V0', Highlight: '0-3,4-7', Cursor:'0']and so on. Is that right? - Catalin