0
votes
0answers
20 views

Comparing GWT RPC with GWT RequestFactory [duplicate]

I've recently implemented a couple of different fetching methods: One using GWT RPC. One using GWT RequestFactory. They do the same thing. Basically fetch a list of Categories that I add to a ...
6
votes
2answers
133 views

How to resend a GWT RequestFactory request

Is it possible to resend a RequestFactory transmission? I'd like to do the equivalent of this: How to resend a GWT RPC request when using RequestFactory. It is fairly simple to resend the same payload ...
2
votes
2answers
188 views

GWT RequestFactory: getting “No type for token …” Exception

I'm new to GWT and RequestFactory so I'm coding a simple test app using GWT RequestFactory for RPC and Objectify for ORM. I have a simple Person entity and was able to get all crud operations working ...
5
votes
1answer
2k views

How to Use the GWT-RequestFactory in Android SyncAdapter (always getting ValidationTool-Error)

I got a question about the usage of GWT-RequestFactory in Android. As a starting point I used the code from the “Create a AppEngine connected Android-Project”-Wizard (infos: ...
2
votes
1answer
383 views

GWT RequestFactory, how to implement Query results DTOs

I have a large implementation of GWT-RPC and actually I'm evaluating the alternative to move to RequestFactory. The basic reason why I'm doing that is because I'm not very happy with TypeSerializers ...
0
votes
1answer
709 views

Using GWT-RPC vs RequestFactory for passing large arrays

I am building an application which retrieves data and parses it into a two-dimensional array object before sending it back to the client. The application then uses the data to create an image on HTML5 ...
0
votes
2answers
505 views

Google Web Toolkit auto refresh grid

I implementing an application that has a grid in it and everytime someone changes something on this grid it automaticaly updates the grid for others who has the grid opened (something like what the ...
0
votes
1answer
307 views

How can I get GWT RequestFactory to with in a Gadget?

How can I get GWT RequestFactory to with in a Gadget? Getting GWT-RPC to work with Gadgets is explained here. I'm looking for a analogous solution for RequestFactory. I tried using the ...
2
votes
1answer
334 views

Is it possible to use GWT EntityProxy WITH RPC calls?

I was reading about this EntityProxy feature in GWT 2.1+ and was wondering if you can use this proxy mechanism to avoid having to create DTOs and combine with regular RPC calls? I have a command ...
1
vote
1answer
2k views

RequestFactory with service layer

I need to use GWT with a service-based domain layer - not beans with DAOs. Is the GWT 2.1 architecture with MVP and RequestFactory fitted for this? Or should I stay with RPC? Thanks
59
votes
8answers
16k views

When should I use RequestFactory vs GWT-RPC?

I am trying to figure out if I should migrate my gwt-rpc calls to the new GWT2.1 RequestFactory cals. Google documentation vaguely mentions that RequestFactory is a better client-server communication ...