Hi You may check this first: http://www.gwtproject.org/doc/latest/DevGuideLogging.html especially this section: http://www.gwtproject.org/doc/latest/DevGuideLogging.html#Remote_Logging Then this: https://gwt.googlesource.com/gwt/+/master/user/src/com/google/gwt/logging/server/RemoteLoggingServiceImpl.java - it's a source for GWT-RPC service which allows remote logging on the server.
As the documentation says: "GWT currently contains a SimpleRemoteLogHandler which will do this in the simplest possible way (using GWT-RPC) and no intelligent batching, exponential backoffs in case of failure, and so forth." So it's possible but you have to implement it yourself. Greg On Wednesday, October 16, 2013 11:56:07 AM UTC+2, [email protected] wrote: > > Hi, I'm a gwt newbie and i want to send whatever log messages are created > on the client side to the server side. My backend is grails and i have > implemented a service that receives the logs. Is there any way to implement > a gwt rpc async call that will not wait for any answer back? > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
