I'm reading a book about GWT (Google Web Toolkit) where the author quote the differences between RPC 1.O and deRPC.
In my professionnal project, for RPC calls we are using :
com.google.gwt.user.client.rpc.RemoteService com.google.gwt.user.server.rpc.RemoteServiceServlet
In the book, the authour precognizes the uses of :
com.google.gwt.user.client.rpc.RemoteService.RpcService (which extends RemoteService) com.google.gwt.rpc.server.RpcServlet (which extends AbstractRemoteServiceServlet)
However, both RpcService and RpcServlet are javadoc marked :
"EXPERIMENTAL and subject to change. Do not use this in production code."
So, basically, does someone uses RpcService and RpcServlet ? And what are the difference between them ?
See this link on StackOverflow for more details : When should I use RequestFactory vs GWT-RPC?