I did not use the all of the RequestFactory API as you did with the driver.
For updating entities, I wrote my own Service. The Locator was only used to 
find the entities.

*1) find*
rf.myRequest().search().fire(new Receiver<List<MyEntityProxy>>() { ...} );

*2. update*
MyRequest req = rf.myRequest();
MyEntityProxy mutable = req.edit(myNonMutableObj);
mutable.setData("foo");
req.*update*(mutable).fire(new Receiver<MyEntityProxy>() {...}):

where "*update*" is a Method on the EJB Service Layer...



-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to