I think you will need to do something like:
ResultSetRow[] rows = resultSet.getRows();
for(ResultSetRow row : rows) {
// Every "row" is pointing to a file
// Whow can I get the url???? PLEASE HELP
NamedValue[] columns = row.getColumns();
for (int y = 0; y < columns.length; y++) {
String fieldName = row.getColumns()[y].getName();
String fieldValue = row.getColumns(y).getValue();
}
I cannot remember why property you will need,
Cheers,
Colin.