Re: How to log every RPC service request and response

2011-04-06 Thread opn
Ok, ill give it a try! I thought about that cause i read it in the securing requestfactory with this custom header thread before. Regards On Apr 5, 10:33 pm, Thomas Broyer t.bro...@gmail.com wrote: On Tuesday, April 5, 2011 7:17:18 PM UTC+2, opn wrote: How would I do this for RequestFactory?

Re: How to log every RPC service request and response

2011-04-05 Thread opn
How would I do this for RequestFactory? (Hope you don't mind that I'm asking it here, follow-up question) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To

Re: How to log every RPC service request and response

2011-04-05 Thread Thomas Broyer
On Tuesday, April 5, 2011 7:17:18 PM UTC+2, opn wrote: How would I do this for RequestFactory? (Hope you don't mind that I'm asking it here, follow-up question) It's much easier! Use the 3-args init() method of the RequestFactory to pass a RequestTransport (most probably one that extends

How to log every RPC service request and response

2011-04-04 Thread Jiunarayan
I want to show progress as loading for every RPC request and response. How to do instead of mentioning every time during the rpc service object? Can there be some global location to log all the rpc request and response?? -- You received this message because you are subscribed to the Google

Re: How to log every RPC service request and response

2011-04-04 Thread Thomas Broyer
Not a global location, but you can set it up once for each GWT.create() of a given service: 1. cast the service to a ServiceDefTargethttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/rpc/ServiceDefTarget.html 2. call