Hi,I publish a WebService using Apache CXF backing a Java App.This Java
application simply serves an array of Person objects:Person{ id:int,
name:String, nationality:Nation }Nation{ id:int, name:String }I am
trying to list all person records using a DataGrid.Below is the mxml
file. (ws is the WebService variable)id and name fields are all
well displayed. But nationality isjust "object Object" which makes no
sense.I googled and found some solutions but could not make themworked.
One of the exampl...