Read the RemoteServiceServlet file from gwt source for help... it looks that the magic happens on its "String processCall(String payload)"... since its not marked as final.. you can extends RemoteServiceServlet and overrides it..
or if you need more control, extend AbstractRemoteServiceServlet and mimetize RemoteServiceServlet doing you Tango.. wherever it is. On Thu, Mar 4, 2010 at 11:37 AM, Ron <[email protected]> wrote: > I'm looking to create a program which can deserialize the GWT RPC > Requests into a human readable format. For example I want to be able > to read through a flat file containing these requests and be able to > deserialize the GWT-RPC requests to gather information such as the > service name, method name and method parameters. Does anyone know an > easy way to accomplish this? > > -- > 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]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > > -- 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.
