Re: How to intercept GWT RPC

2011-10-05 Thread Tomasz Gawel
If you work with spring you probably have a spring controller that extends RemoteServiceServlet implementation. (look at this topic comment) you can stick interceptor on handleRequest method as normally in Spring you would do :). or if you need to get some piece of information from decoded

How to intercept GWT RPC

2011-10-04 Thread Costa
Hi, I would like to encode information of the current session, such as the session Id, current user for each GWT RPC call, how can I add this in the RPC request and response? Thanks, Costa -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: How to intercept GWT RPC

2011-10-04 Thread Bruno Sandivilli
You dont need this, just use: HttpServletRequest request = this.getThreadLocalRequest(); 2011/10/4 Costa costa...@gmail.com Hi, I would like to encode information of the current session, such as the session Id, current user for each GWT RPC call, how can I add this in the RPC request and