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 method for "data-oriented services"

What I can distill from the documentation is that there is a new Proxy class that simplifies the communication (you don't pass back and forth the actual entity but just the proxy, so it is lighter weight and easier to manage)

Is that the whole point or am I missing something else in the big picture?

link|improve this question

0% accept rate
yay, this question is linked from the official gwt devguide! – törzsmókus Feb 8 at 21:34
feedback

5 Answers

The big difference between GWT RPC and RequsetFactory is that the RPC system is "RPC-by-concrete-type" while RequestFactory is "RPC-by-interface".

RPC is more convenient to get started with, because you write fewer lines of code and use the same class on both the client and the server. You might create a Person class with a bunch of getters and setters and maybe some simple business logic for further slicing-and-dicing of the data in the Person object. This works quite well until you wind up wanting to have server-specific, non-GWT-compatible, code inside your class. Because the RPC system is based on having the same concrete type on both the client and the server, you can hit a complexity wall based on the capabilities of your GWT client.

To get around the use of incompatible code, many users wind up creating a peer PersonDTO that shadows the real Person object used on the server. The PersonDTO just has a subset of the getters and setters of the server-side, "domain", Person object. Now you have to write code that marshalls data between the Person and PersonDTO object and all other object types that you want to pass to the client.

RequestFactory starts off by assuming that your domain objects aren't going to be GWT-compatible. You simply declare the properties that should be read and written by the client code in a Proxy interface, and the RequestFactory server components take care of marshaling the data and invoking your service methods. For applications that have a well-defined concept of "Entities" or "Objects with identity and version", the EntityProxy type is used to expose the persistent identity semantics of your data to the client code. Simple objects are mapped using the ValueProxy type.

With RequestFactory, you pay an up-front startup cost to accommodate more complicated systems than GWT RPC easily supports. RequestFactory's ServiceLayer provides significantly more hooks to customize its behavior by adding ServiceLayerDecorator instances.

link|improve this answer
This is a good reason to support my decision to switch to RequestFactory. Thank you, Bob! It makes sense and I don't understand why some people say "use RPC in some cases and RF in others depending on your needs" because it seems like with RPC you have to write lots of glue code and that DTO layer – leadgy Mar 9 '11 at 13:38
Another plus for RequestFactory is it can be used with Android and GWT with the exact same code. – Patrick Mar 6 at 14:08
feedback

I find the idea of creating Proxy classes for all my entities quite annoying. My Hibernate/JPA pojos are auto-generated from the database model. Why do I now need to create a second mirror of those for RPC? We have a nice "estivation" framework that takes care of "de-hibernating" the pojos.

Also, the idea of defining service interfaces that don't quite implement the server side service as a java contract but do implement the methods - sounds very J2EE 1.x/2.x to me.

link|improve this answer
It is annoying, but if you have to create proxies anyway, then you'd rather have the extra help that RF gives you for managing those proxies. Not everybody wants to send the entire pojo to the client - for example, consider a poker game - your Player object might have information that everybody should see (number of cards in hand, cards showing face up, total chips) and other information that only one player should see (face down cards). – Peter Recore Sep 19 '11 at 17:02
Your Poker example is valid - we work around that by having annotations (@WireTransient) that our "estivation" framework uses to suppress values. – kabram Nov 16 '11 at 18:02
feedback

We have have a very large implementation of GWT-RPC in our project. Actually we have 50 Service interfaces with many methods each, and we have problems with the size of TypeSerializers generated by the compiler that turns our JS code huge. So we are analizing to move towards RequestFactory. I have been read for a couple of days digging into the web and trying to find what other people are doing. The most important drawback I saw, and maybe I could be wrong, is that with RequestFactory your are no longer in control of the communication between your Server Domain objects and your client ones. What we need is apply the load / save pattern in a controlled way. I mean, for example client receive the whole object graph of objects belonging to a specific transaction, do his updates and them send the whole back to the server. The server will be responsible for doing validation, compare old with new values and do persistance. If 2 users from different sites gets the same transaction and do some updates, the resulting transaction shouldn't be the merged one. One of the updates should fail in my scenario. I don't see that RequestFactory helps supporting this kind of processing.

Regards Daniel

link|improve this answer
I share these concerns...did you end up going with RF? – HDave Nov 15 '11 at 22:31
feedback

I think it's really helpful if you have a heavy pojo on the client side, for example if you use Hibernate or JPA entities. We adopted another solution, using a Django style persistence framework with very light entities.

link|improve this answer
feedback

The only caveat I would put in is that RequestFactory uses the binary data transport (deRPC maybe?) and not the normal GWT-RPC.

This only matters if you are doing heavy testing with SyncProxy, Jmeter, Fiddler, or any similar tool that can read/evaluate the contents of the HTTP request/response (like GWT-RPC), but would be more challenging with deRPC or RequestFactory.

link|improve this answer
1  
Except that actually RequestFactory does provide "pure Java" implementation out of the box, without the need for 3rd party tools like SyncProxy. See stackoverflow.com/questions/4853188/… – Thomas Broyer Feb 14 '11 at 22:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.