Hi, try to dig into com.google.gwt.user.server.rpc.RemoteServiceServlet and then look at processRequest method. Then go deeper into com.google.gwt.user.server.rpc.RPC where the magic is hidden.
In few words: there is serialization policy file downloaded for each servlet where serialized object are defined. The requests string is parsed with repsect to this policy file and then appropriate object are created. If you want to learn more, start your project in debug mode and watch where you request is processed. The best documentation is the code. Regards Palo On Feb 1, 6:47 pm, RADE <[email protected]> wrote: > Hi Everybody, > > I've been looking for some documentation about GWT RPC Protocol > Details, and I haven't found big things. My specific need is to know > how I can interpretate the sent messages from the client application > to the server side without using a GWT servlet. > > Thanks a lot for your help. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
