On Monday, August 18, 2014 5:29:57 PM UTC+2, Paweł Farid wrote: > > Hi > > I'm using GWT 2.5.1 with java 1.6. > > recently I've found in my server log quite a few occurrences of the > following error: > > com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public > abstract java.lang.String > com.google.gwt.logging.shared.RemoteLoggingService.logOnServer(java.util.logging.LogRecord)' > > threw an unexpected exception: java.lang.NoClassDefFoundError: > com/google/gwt/thirdparty/debugging/sourcemap/SourceMapping >
That class is erroneously packaged in gwt-servlet-deps.jar in 2.5.1 (that JAR is only present in the ZIP distribution downloadable from code.google.com), and was moved to gwt-servlet.jar in 2.6. Try updating to GWT 2.6.1, or deploy gwt-servlet-deps.jar (and make sure it's from the same GWT version as gwt-servlet.jar). > at > com.google.gwt.user.server.rpc.RPC.encodeResponseForFailure(RPC.java:389) > at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:579) > at > com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:208) > at > com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:248) > at > com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) > > > > ... > > > > any ideas ? can't find any data on the subject. > > > BR > PF > > > -- 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/d/optout.
