Re: RequestFactory - ValueProxy is null

2015-01-22 Thread andymel
Jens, it works! Thanks a lot for this brief and great answer! Am Donnerstag, 22. Januar 2015 19:08:22 UTC+1 schrieb Jens: > > From the official GWT documentation: > > > > When querying the server, RequestFactory does not automatically populate > relations in the object graph. To do this, use t

Re: RequestFactory - ValueProxy is null

2015-01-22 Thread Jens
>From the official GWT documentation: When querying the server, RequestFactory does not automatically populate relations in the object graph. To do this, use the with() method on a request and specify the related property name as a String: Request findReq = requestFactory.personRequest().fin

RequestFactory - ValueProxy is null

2015-01-22 Thread andymel
Hi, I have written a small program to test the RequestFactory. I have a TestEntity class and a TestValue class on the server and corresponding TestEntityProxy and TestValueProxy on the client. public class TestEntity { private static long staticIDpool = 0; private Long id; private String test