On Apr 28, 2:03 am, Tim T <
ttara...@gmail.com> wrote:
> However, I would question this approach for a large scale rich client
> system, since you'll realize soon enough that GWT RPC offers quite a
> bit of productivity gains than other rpc approaches don't and leads to
> a more cohesive implementation.
To enlarge on this point, one of the most important benefits of GWT is
compile-time type checking of the interfaces you call in your client
code with their implementations on the server.
This means that when you change your RPC interface the compiler (and
your IDE) will tell you at once which parts of your client code are
affected.
GWT 1.5, which supports Java 5 generic types allows even better typing
of your interfaces, as your callbacks can be parameterised with the
correct type.