I have a GWT application with Requestfactory. On the serverside I have a service returning a triple nested object. A contains a List<B> #B. Each B contains a C.
When I fire my request to findAll(A).with("B","C").fire(receiver) it only returns B values. C is null. In debugging I see that up to the DAO the A object is properly set with all values.
(Clientside all extend EntityProxy)
Right now I need to fire seperate requests to get C for every B selected in the list of A. Which means more back and forth...
Thanks