Friday, January 31, 2014

Re: GWT 2.6.0, SuperDevMode, and GWT-RPC serialization error

Yes, it works with -noserver, just add "-Dgwt.codeserver.port=9876" to the 'VM Arguments'.

For debugging with Tomcat, I added "-Dgwt.codeserver.port=9876" to JAVA_OPTS ins setenv.sh.

Thanks again.

On Friday, January 31, 2014 3:35:19 PM UTC-5, Thad Humphries wrote:
Thank, Jens. That's working: I added "-Dgwt.codeserver.port=9876" to the 'VM Arguments' in my run configuration and my RPC call works.

I'm guessing there might be similar magic when running -noserver, right? I want to tackle that next, since Jetty configuration is gone with 2.6.0 and I dearly miss being able to configure my log4j.properties beyond my product's default.

On Friday, January 31, 2014 3:11:57 PM UTC-5, Jens wrote:
When using SuperDevMode your server side code must access the GWT-RPC serialization policy files from your SDM code server (because thats the one compiling your app and generating the up-to-date policy file). 

This was kind of annoying with previous GWT versions but now GWT is able to download these files from the code server automatically if you set the system property gwt.codeserver.port for your server. As you seem to use classic DevMode as jetty server you must launch classic DevMode with -Dgwt.codeserver.port=<your SDM code server port>

If for whatever reasons your SDM code server is not listening on localhost you have to override RemoteServiceServlet.getCodeServerPolicyUrl(). Also take a look at the JavaDoc of that method.

-- J.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: body.scrollLeft and body.scrollTop deprecated in strict mode



On Friday, January 31, 2014 11:18:34 PM UTC+1, Thomas Broyer wrote:
GWT should use documentElement, unless you're in quirks mode (in which case it uses the body).

…that said, I see the same warnings for Google Groups, and it correctly runs in standards mode.

Hah, must be the getScrollLeft(Document) and getScrollTop(Document) overrides in DOMImplStandardBase: https://gwt.googlesource.com/gwt/+/2.6.0/user/src/com/google/gwt/dom/client/DOMImplStandardBase.java
Maybe we should move them down to DOMImplWebkit with an additional check for Safari vs. Chrome (assuming some versions of Safari still need it)

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: body.scrollLeft and body.scrollTop deprecated in strict mode

GWT should use documentElement, unless you're in quirks mode (in which case it uses the body).

On Friday, January 31, 2014 9:01:59 PM UTC+1, Thad Humphries wrote:
When I'm running my project in SuperDevMode with GWT 2.6.0, I occasionally these messages in Chrome's JavaScript Console:

body.scrollLeft is deprecated in strict mode. Please use 'documentElement.scrollLeft' if in strict mode and 'body.scrollLeft' only if in quirks mode. 

body.scrollTop is deprecated in strict mode. Please use 'documentElement.scrollTop' if in strict mode and 'body.scrollTop' only if in quirks mode. 

After copying down the source, the former seems to come from user/src/com/google/gwt/user/client/impl/DOMImpl.java, line 481. The latter seems to come from user/src/com/google/gwt/dom/client/Element.java, line 847. (I could be way off. I'm making assumption because both calls are in native JavaScript and I find no others.)

It's probably inconsequential for some time to come, but I just thought I'd point it out.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT 2.6.0, SuperDevMode, and GWT-RPC serialization error

Thank, Jens. That's working: I added "-Dgwt.codeserver.port=9876" to the 'VM Arguments' in my run configuration and my RPC call works.

I'm guessing there might be similar magic when running -noserver, right? I want to tackle that next, since Jetty configuration is gone with 2.6.0 and I dearly miss being able to configure my log4j.properties beyond my product's default.

On Friday, January 31, 2014 3:11:57 PM UTC-5, Jens wrote:
When using SuperDevMode your server side code must access the GWT-RPC serialization policy files from your SDM code server (because thats the one compiling your app and generating the up-to-date policy file). 

This was kind of annoying with previous GWT versions but now GWT is able to download these files from the code server automatically if you set the system property gwt.codeserver.port for your server. As you seem to use classic DevMode as jetty server you must launch classic DevMode with -Dgwt.codeserver.port=<your SDM code server port>

If for whatever reasons your SDM code server is not listening on localhost you have to override RemoteServiceServlet.getCodeServerPolicyUrl(). Also take a look at the JavaDoc of that method.

-- J.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT 2.6.0, SuperDevMode, and GWT-RPC serialization error

When using SuperDevMode your server side code must access the GWT-RPC serialization policy files from your SDM code server (because thats the one compiling your app and generating the up-to-date policy file). 

This was kind of annoying with previous GWT versions but now GWT is able to download these files from the code server automatically if you set the system property gwt.codeserver.port for your server. As you seem to use classic DevMode as jetty server you must launch classic DevMode with -Dgwt.codeserver.port=<your SDM code server port>

If for whatever reasons your SDM code server is not listening on localhost you have to override RemoteServiceServlet.getCodeServerPolicyUrl(). Also take a look at the JavaDoc of that method.

-- J.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT 2.6.0, SuperDevMode, and GWT-RPC serialization error

I thought of that since I recall something similar going from 2.4 to 2.5 (or some such upgrade). I cleared my browser cache completely and (as I said) called `mvn clean` to remove target. I also removed the www-test and gwt-unitCache directories. I even did a clean on supporting libraries. Is there something else I should zap?

On Friday, January 31, 2014 2:54:23 PM UTC-5, Juan Pablo Gardella wrote:
Seems a cache error. Did you clean all temp data?


2014-01-31 Thad Humphries <thad.hu...@gmail.com>:
I have switched over a new project to GWT 2.6.0. I running with Maven and the GWT Maven Plugin 2.6.0-rc3.

Everything was working swimmingly with GWT 2.5.1. Now I'm getting GWT-RPC serialization errors when running SuperDevMode.

If I start DevMode from Maven (gwt:run) or through Eclipse, the classes that I have marked as implementing java.io.Serializable pass through the RPC layer without a hitch. However, serialization fails with SuperDevMode:
 
- start SuperDevMode from a console with Maven and gwt:run-codeserver)
- start the server though Eclipse in Development Mode
- turn Dev Mode On and Compile

Now executing the GWT-RPC method shows this in my console file:

Starting Jetty on port 8888
   [WARN] Exception while dispatching incoming RPC call
com.google.gwt.user.client.rpc.SerializationException: Type 'com.optix.mobile.shared.AboutBoxData' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' and did not have a custom field serializer.For security purposes, this type will not be serialized.: instance = com.optix.mobile.shared.AboutBoxData@adc7bb6
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter.serialize(ServerSerializationStreamWriter.java:667)
at com.google.gwt.user.client.rpc.impl.AbstractSerializationStreamWriter.writeObject(AbstractSerializationStreamWriter.java:130)
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter$ValueWriter$8.write(ServerSerializationStreamWriter.java:153)
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter.serializeValue(ServerSerializationStreamWriter.java:587)
at com.google.gwt.user.server.rpc.RPC.encodeResponse(RPC.java:605)
at com.google.gwt.user.server.rpc.RPC.encodeResponseForSuccess(RPC.java:471)
at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:563)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305)
at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:755)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
at org.eclipse.jetty.server.Server.handle(Server.java:370)
at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489)
at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960)
at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021)
at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865)
at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240)
at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)
at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668)
at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)
at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)
at java.lang.Thread.run(Thread.java:744)
[ERROR] 500 - POST /optixm/mobile (192.168.1.101) 57 bytes
   Request headers
      Host: 192.168.1.101:8888
      Connection: keep-alive
      Content-Length: 137
      X-GWT-Module-Base: http://192.168.1.101:8888/optixm/
      X-GWT-Permutation: FAC089581D0988AAD23493D0B52C84AF
      Origin: http://192.168.1.101:8888
      User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.102 Safari/537.36
      Content-Type: text/x-gwt-rpc; charset=UTF-8
      Accept: */*
      DNT: 1
      Accept-Encoding: gzip,deflate,sdch
      Accept-Language: en-US,en;q=0.8
      Cookie: JSESSIONID=11w6l0ygma6brge4d71mphf48
   Response headers
      Content-Type: text/plain


If I implement AboutBoxData with com.google.gwt.user.client.rpc.IsSerializable vs java.io.Serializable, the class will eventually fail because of a member that uses java.io.Serializable.

What could be causing this? I've cleaned my Maven tree down to pom.xml and src, but each time I get this error. 

Is there some new setting to gwt-maven-plugin?

Is there some Eclipse plugin I should|should not be running? My Eclipse has installed m2e from http://download.eclipse.org/technology/m2e/releases/ and m2e-apt and m2e-wtp from http://download.jboss.org/jbosstools/updates/...   I have removed the Jetty plugins I was using elsewhere.

Thanks for y'all's help. I want to run 2.6.0 because I want to work with the latest MGWT SNAPSHOTS as they are available, and I don't want to give up SuperDevMode.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

body.scrollLeft and body.scrollTop deprecated in strict mode

When I'm running my project in SuperDevMode with GWT 2.6.0, I occasionally these messages in Chrome's JavaScript Console:

body.scrollLeft is deprecated in strict mode. Please use 'documentElement.scrollLeft' if in strict mode and 'body.scrollLeft' only if in quirks mode. 

body.scrollTop is deprecated in strict mode. Please use 'documentElement.scrollTop' if in strict mode and 'body.scrollTop' only if in quirks mode. 

After copying down the source, the former seems to come from user/src/com/google/gwt/user/client/impl/DOMImpl.java, line 481. The latter seems to come from user/src/com/google/gwt/dom/client/Element.java, line 847. (I could be way off. I'm making assumption because both calls are in native JavaScript and I find no others.)

It's probably inconsequential for some time to come, but I just thought I'd point it out.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT 2.6.0, SuperDevMode, and GWT-RPC serialization error

Seems a cache error. Did you clean all temp data?


2014-01-31 Thad Humphries <thad.humphries@gmail.com>:
I have switched over a new project to GWT 2.6.0. I running with Maven and the GWT Maven Plugin 2.6.0-rc3.

Everything was working swimmingly with GWT 2.5.1. Now I'm getting GWT-RPC serialization errors when running SuperDevMode.

If I start DevMode from Maven (gwt:run) or through Eclipse, the classes that I have marked as implementing java.io.Serializable pass through the RPC layer without a hitch. However, serialization fails with SuperDevMode:
 
- start SuperDevMode from a console with Maven and gwt:run-codeserver)
- start the server though Eclipse in Development Mode
- turn Dev Mode On and Compile

Now executing the GWT-RPC method shows this in my console file:

Starting Jetty on port 8888
   [WARN] Exception while dispatching incoming RPC call
com.google.gwt.user.client.rpc.SerializationException: Type 'com.optix.mobile.shared.AboutBoxData' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' and did not have a custom field serializer.For security purposes, this type will not be serialized.: instance = com.optix.mobile.shared.AboutBoxData@adc7bb6
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter.serialize(ServerSerializationStreamWriter.java:667)
at com.google.gwt.user.client.rpc.impl.AbstractSerializationStreamWriter.writeObject(AbstractSerializationStreamWriter.java:130)
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter$ValueWriter$8.write(ServerSerializationStreamWriter.java:153)
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter.serializeValue(ServerSerializationStreamWriter.java:587)
at com.google.gwt.user.server.rpc.RPC.encodeResponse(RPC.java:605)
at com.google.gwt.user.server.rpc.RPC.encodeResponseForSuccess(RPC.java:471)
at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:563)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305)
at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:755)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
at org.eclipse.jetty.server.Server.handle(Server.java:370)
at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489)
at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960)
at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021)
at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865)
at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240)
at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)
at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668)
at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)
at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)
at java.lang.Thread.run(Thread.java:744)
[ERROR] 500 - POST /optixm/mobile (192.168.1.101) 57 bytes
   Request headers
      Host: 192.168.1.101:8888
      Connection: keep-alive
      Content-Length: 137
      X-GWT-Module-Base: http://192.168.1.101:8888/optixm/
      X-GWT-Permutation: FAC089581D0988AAD23493D0B52C84AF
      Origin: http://192.168.1.101:8888
      User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.102 Safari/537.36
      Content-Type: text/x-gwt-rpc; charset=UTF-8
      Accept: */*
      DNT: 1
      Accept-Encoding: gzip,deflate,sdch
      Accept-Language: en-US,en;q=0.8
      Cookie: JSESSIONID=11w6l0ygma6brge4d71mphf48
   Response headers
      Content-Type: text/plain


If I implement AboutBoxData with com.google.gwt.user.client.rpc.IsSerializable vs java.io.Serializable, the class will eventually fail because of a member that uses java.io.Serializable.

What could be causing this? I've cleaned my Maven tree down to pom.xml and src, but each time I get this error. 

Is there some new setting to gwt-maven-plugin?

Is there some Eclipse plugin I should|should not be running? My Eclipse has installed m2e from http://download.eclipse.org/technology/m2e/releases/ and m2e-apt and m2e-wtp from http://download.jboss.org/jbosstools/updates/...   I have removed the Jetty plugins I was using elsewhere.

Thanks for y'all's help. I want to run 2.6.0 because I want to work with the latest MGWT SNAPSHOTS as they are available, and I don't want to give up SuperDevMode.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

GWT 2.6.0, SuperDevMode, and GWT-RPC serialization error

I have switched over a new project to GWT 2.6.0. I running with Maven and the GWT Maven Plugin 2.6.0-rc3.

Everything was working swimmingly with GWT 2.5.1. Now I'm getting GWT-RPC serialization errors when running SuperDevMode.

If I start DevMode from Maven (gwt:run) or through Eclipse, the classes that I have marked as implementing java.io.Serializable pass through the RPC layer without a hitch. However, serialization fails with SuperDevMode:
 
- start SuperDevMode from a console with Maven and gwt:run-codeserver)
- start the server though Eclipse in Development Mode
- on the Development Mode messsage http://192.168.1.101:8888/Mobile.html?gwt.codesvr=192.168.1.101:9997, 
  open the URL http://192.168.1.101:8888/Mobile.html
- turn Dev Mode On and Compile

Now executing the GWT-RPC method shows this in my console file:

Starting Jetty on port 8888
   [WARN] Exception while dispatching incoming RPC call
com.google.gwt.user.client.rpc.SerializationException: Type 'com.optix.mobile.shared.AboutBoxData' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' and did not have a custom field serializer.For security purposes, this type will not be serialized.: instance = com.optix.mobile.shared.AboutBoxData@adc7bb6
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter.serialize(ServerSerializationStreamWriter.java:667)
at com.google.gwt.user.client.rpc.impl.AbstractSerializationStreamWriter.writeObject(AbstractSerializationStreamWriter.java:130)
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter$ValueWriter$8.write(ServerSerializationStreamWriter.java:153)
at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter.serializeValue(ServerSerializationStreamWriter.java:587)
at com.google.gwt.user.server.rpc.RPC.encodeResponse(RPC.java:605)
at com.google.gwt.user.server.rpc.RPC.encodeResponseForSuccess(RPC.java:471)
at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:563)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305)
at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:755)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
at org.eclipse.jetty.server.Server.handle(Server.java:370)
at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489)
at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960)
at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021)
at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865)
at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240)
at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)
at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668)
at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)
at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)
at java.lang.Thread.run(Thread.java:744)
[ERROR] 500 - POST /optixm/mobile (192.168.1.101) 57 bytes
   Request headers
      Host: 192.168.1.101:8888
      Connection: keep-alive
      Content-Length: 137
      X-GWT-Module-Base: http://192.168.1.101:8888/optixm/
      X-GWT-Permutation: FAC089581D0988AAD23493D0B52C84AF
      Origin: http://192.168.1.101:8888
      User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.102 Safari/537.36
      Content-Type: text/x-gwt-rpc; charset=UTF-8
      Accept: */*
      DNT: 1
      Referer: http://192.168.1.101:8888/Mobile.html
      Accept-Encoding: gzip,deflate,sdch
      Accept-Language: en-US,en;q=0.8
      Cookie: JSESSIONID=11w6l0ygma6brge4d71mphf48
   Response headers
      Content-Type: text/plain


If I implement AboutBoxData with com.google.gwt.user.client.rpc.IsSerializable vs java.io.Serializable, the class will eventually fail because of a member that uses java.io.Serializable.

What could be causing this? I've cleaned my Maven tree down to pom.xml and src, but each time I get this error. 

Is there some new setting to gwt-maven-plugin?

Is there some Eclipse plugin I should|should not be running? My Eclipse has installed m2e from http://download.eclipse.org/technology/m2e/releases/ and m2e-apt and m2e-wtp from http://download.jboss.org/jbosstools/updates/...   I have removed the Jetty plugins I was using elsewhere.

Thanks for y'all's help. I want to run 2.6.0 because I want to work with the latest MGWT SNAPSHOTS as they are available, and I don't want to give up SuperDevMode.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT Multi columns sort with AsyncDataProvider

I have the same problem. I do not think it is advisable sorting AsyncDataProvider on the client side. I would suggest you to perform the sorting at server side and make the rpc call to return the data. 

Thanks
Ashish Tyagi

On Tuesday, July 16, 2013 7:10:19 AM UTC-4, zakaria otmani wrote:
i have a table contains 3 columns, when the user clicks in one of them the table should be sorted, i'm using AsyncDataProvider, the sort for the first column works fine, so i should do the same to the others columns. this is the code :

AsyncDataProvider<PermisoUI> providerPerfiles = new AsyncDataProvider<PermisoUI>() {        @Override      protected void onRangeChanged(HasData<PermisoUI> display) {            if(sortedPermiso) {              sortedPermiso=false;              class TipoCuotasComparator implements Comparator<Object> {                  public int compare(Object l1, Object l2) {                      PermisoUI o1 = (PermisoUI) l1;                      PermisoUI o2 = (PermisoUI) l2;                      return o2.getId().compareTo(o1.getId());                    }              }              Collections.sort(listPermisos, new TipoCuotasComparator());          }else {              sortedPermiso = true;              class TipoCuotasComparator implements Comparator<Object> {                  public int compare(Object l1, Object l2) {                      PermisoUI o1 = (PermisoUI) l1;                      PermisoUI o2 = (PermisoUI) l2;                      return o1.getId().compareTo(o2.getId());                  }              }              Collections.sort(listPermisos, new TipoCuotasComparator());          }            int start = display.getVisibleRange().getStart();          int end = start + display.getVisibleRange().getLength();          end = end >= listPermisos.size() ? listPermisos.size() : end;          List<PermisoUI> sub = listPermisos.subList(start, end);          updateRowData(start, sub);        }  };        providerPerfiles.addDataDisplay(CellTblPermisos);    //Sorting Column  AsyncHandler columnSortAplHandler = new AsyncHandler(CellTblPermisos);  CellTblPermisos.addColumnSortHandler(columnSortAplHandler);  CellTblPermisos.getColumnSortList().push(permisoColumn);          providerPerfiles.addDataDisplay(CellTblPermisos);  providerPerfiles.updateRowCount(listPermisos.size(), true);  PPerfil.clear();  PPerfil.add(CellTblPermisos);

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT 2.6.0 now available

great!


2014-01-31 Patrice De Saint Steban <patou.de.saint.steban@gmail.com>:
The 2.6.0-rc3 version exist in the maven central.
You can use it, and define the dependencies in the plugin configuration for use the 2.6.0 version.

Le vendredi 31 janvier 2014 12:48:36 UTC+1, Bruno Santos a écrit :
Missing only release the new version for eclipse plugin

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT 2.6.0 now available

The 2.6.0-rc3 version exist in the maven central.
You can use it, and define the dependencies in the plugin configuration for use the 2.6.0 version.

Le vendredi 31 janvier 2014 12:48:36 UTC+1, Bruno Santos a écrit :
Missing only release the new version for eclipse plugin

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: how to use SQL database to validate username and password in GWT

Develop an SQL interpreter for GWT, write an store procedure with a rule to validate password and username, and run it. 

El viernes, 31 de enero de 2014 08:08:12 UTC-3, Ashfaq Khan escribió:
i'm new to gwt and doing my major project on gwt, webPOS as part of academics, so i'm kinda stuck with sql database connection in Gwt to validate login page details from the database...any help from the developers is much appreciated :-/ 

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT 2.6.0 now available

Missing only release the new version for eclipse plugin

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

how to use SQL database to validate username and password in GWT

i'm new to gwt and doing my major project on gwt, webPOS as part of academics, so i'm kinda stuck with sql database connection in Gwt to validate login page details from the database...any help from the developers is much appreciated :-/ 

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Thursday, January 30, 2014

Re: MenuBar: How to open MenuItem in new tab/window?

Just create a MenuItem with

new MenuItem("< a href="someURL">The Text</a>, true, (ScheduledCommand)null)

Et voilà you're done.
 
Am Donnerstag, 30. Januar 2014 16:32:28 UTC+1 schrieb kibu Kuhn:
hi,

as MenuItem does not render a html link but just peforms a function call when you click onto an item, you can't open the new page in a new tab or window (A menu item here does not perform a place change but just opens a new page from the server). How can I achieve this?

TIA
kibu


--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: MenuBar: How to open MenuItem in new tab/window?

defined the function to call Window.open( ... )



On Thu, Jan 30, 2014 at 7:32 AM, kibu Kuhn <gernot.veith@gmx.de> wrote:
hi,

as MenuItem does not render a html link but just peforms a function call when you click onto an item, you can't open the new page in a new tab or window (A menu item here does not perform a place change but just opens a new page from the server). How can I achieve this?

TIA
kibu


--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.



--
-- A. Stevko
===========
"If everything seems under control, you're just not going fast enough." M. Andretti




--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: GWT 2.6.0 now available

it already was available for download for days :D


2014-01-30 Matthew Dempsky <mdempsky@google.com>:
Hi GWT community,

We're excited to announce the GWT 2.6.0 release!  Many of you noticed it was uploaded a few days ago, but if you missed it, you can download it here.  This release has also been uploaded to Maven Central with the version string of "2.6.0".

GWT 2.6.0 contains over 100 new bug fixes since GWT 2.5.1, more than 400 changes in total, and greater than 20% of all contributions came from the community.  Thanks so much to everyone who reported issues and/or submitted patches!

For a summary of user-visible changes, please see the GWT release notes.  And as always, please report any issues using the GWT issue tracker.

Happy hacking!

-Matthew, on behalf of the GWT developers

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

GWT 2.6.0 now available

Hi GWT community,

We're excited to announce the GWT 2.6.0 release!  Many of you noticed it was uploaded a few days ago, but if you missed it, you can download it here.  This release has also been uploaded to Maven Central with the version string of "2.6.0".

GWT 2.6.0 contains over 100 new bug fixes since GWT 2.5.1, more than 400 changes in total, and greater than 20% of all contributions came from the community.  Thanks so much to everyone who reported issues and/or submitted patches!

For a summary of user-visible changes, please see the GWT release notes.  And as always, please report any issues using the GWT issue tracker.

Happy hacking!

-Matthew, on behalf of the GWT developers

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Starting app in superdevmode from selenium

I am testing my application with selenium, This work fine but i want to run tests against a recompiled version So how can I that the test loads the latest comiled version from the superdevmode server.

That would be great.

Marteijn Nouwens

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Re: Stumped: java.lang.AssertionError: No ImageRect ever computed for cellTableFooterBackground

Did u figure this one out?

On Friday, December 2, 2011 4:47:28 PM UTC-5, laredotornado wrote:
Hi,

I'm building a Maven-GWT project using Maven 3.0.3 and GWT 2.4.  I
have included these dependencies in my pom.xml file,

                <dependency>
                        <groupId>com.google.gwt</groupId>
                        <artifactId>gwt-servlet</artifactId>
                        <version>${gwtVersion}</version>
                </dependency>
                <dependency>
                        <groupId>com.google.gwt</groupId>
                        <artifactId>gwt-user</artifactId>
                        <version>${gwtVersion}</version>
                </dependency>

but when I run my GWTTestCases, I get the following errors.
Specifically, the test dies at this line ...

        final CellTable<Node> tableWidget = new
CellTable<Node>(KEY_PROVIDER);

Does anyone know what these are all about?  What additional steps can
I take to troubleshoot this problem?

Thanks, - Dave

Running
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
        logging for HtmlUnit thread
           [WARN] Expected content type of 'application/javascript' or
'application/ecmascript' for remotely loaded JavaScript element at
'http://10.128.121.174:36346/
com.myco.clearing.product.ProductPlusJUnit.JUnit/
com.myco.clearing.product.ProductPlusJUnit.JUnit.nocache.js', but got
'application/x-javascript'.
        Rebinding com.google.gwt.user.cellview.client.CellTable.Resources
           Invoking generator
com.google.gwt.resources.rebind.context.InlineClientBundleGenerator
              [ERROR] Generator
'com.google.gwt.resources.rebind.context.InlineClientBundleGenerator'
failed an assertion while rebinding
'com.google.gwt.user.cellview.client.CellTable.Resources'
        java.lang.AssertionError: No ImageRect ever computed for
cellTableFooterBackground
                at
com.google.gwt.resources.rg.ImageResourceGenerator.createAssignment(ImageResourceGenerator.java:
474)
                at
com.google.gwt.resources.rebind.context.AbstractClientBundleGenerator.createFieldsAndAssignments(AbstractClientBundleGenerator.java:
785)
                at
com.google.gwt.resources.rebind.context.AbstractClientBundleGenerator.createFieldsAndAssignments(AbstractClientBundleGenerator.java:
854)
                at
com.google.gwt.resources.rebind.context.AbstractClientBundleGenerator.generateIncrementally(AbstractClientBundleGenerator.java:
460)
                at
com.google.gwt.dev.javac.StandardGeneratorContext.runGeneratorIncrementally(StandardGeneratorContext.java:
647)
                at
com.google.gwt.dev.cfg.RuleGenerateWith.realize(RuleGenerateWith.java:
41)
                at com.google.gwt.dev.shell.StandardRebindOracle
$Rebinder.rebind(StandardRebindOracle.java:78)
                at
com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.java:
268)
                at
com.google.gwt.dev.shell.ShellModuleSpaceHost.rebind(ShellModuleSpaceHost.java:
141)
                at
com.google.gwt.dev.shell.ModuleSpace.rebind(ModuleSpace.java:585)
                at
com.google.gwt.dev.shell.ModuleSpace.rebindAndCreate(ModuleSpace.java:
455)
                at
com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:49)
                at com.google.gwt.core.client.GWT.create(GWT.java:97)
                at
com.google.gwt.user.cellview.client.CellTable.getDefaultResources(CellTable.java:
468)
                at
com.google.gwt.user.cellview.client.CellTable.<init>(CellTable.java:
549)
                at
com.google.gwt.user.cellview.client.CellTable.<init>(CellTable.java:
526)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getTableWidget(XmlToHtmlServiceImpl.java:
314)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
82)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
$12.onSuccess(XmlToHtmlServiceTest.java:605)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
$12.onSuccess(XmlToHtmlServiceTest.java:1)
                at
com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.onResponseReceived(RequestCallbackAdapter.java:
232)
                at
com.google.gwt.http.client.Request.fireOnResponseReceived(Request.java:
287)
                at com.google.gwt.http.client.RequestBuilder
$1.onReadyStateChange(RequestBuilder.java:395)
                at sun.reflect.GeneratedMethodAccessor28.invoke(Unknown
Source)
                at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
                at java.lang.reflect.Method.invoke(Method.java:597)
                at
com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                at
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                at
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:
172)
                at
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:
337)
                at
com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:
218)
                at
com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:
136)
                at
com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:
561)
                at
com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:
269)
                at
com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:
91)
                at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
                at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:213)
                at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown
Source)
                at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
                at java.lang.reflect.Method.invoke(Method.java:597)
                at
com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                at
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                at
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:
172)
                at
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:
292)
                at
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:
546)
                at
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:
363)
                at java.lang.Thread.run(Thread.java:662)
        [ERROR] Deferred binding failed for
'com.google.gwt.user.cellview.client.CellTable.Resources'; expect
subsequent failures
        Rebinding com.google.gwt.user.cellview.client.CellTable.Resources
           [WARN] For the following type(s), generated source was never
committed (did you forget to call commit()?)
              [WARN]
com.google.gwt.user.cellview.client.CellTable_Resources_default_InlineClientBundleGenerator
        [ERROR] Could not load deferred binding result type
'com.google.gwt.user.cellview.client.CellTable_Resources_default_InlineClientBundleGenerator'
        java.lang.ClassNotFoundException: com$google$gwt$user$cellview$client
$CellTable_Resources_default_InlineClientBundleGenerator
                at
com.google.gwt.dev.shell.CompilingClassLoader.findClass(CompilingClassLoader.java:
1061)
                at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
                at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
                at java.lang.Class.forName0(Native Method)
                at java.lang.Class.forName(Class.java:247)
                at
com.google.gwt.dev.shell.ModuleSpace.loadClassFromSourceName(ModuleSpace.java:
654)
                at
com.google.gwt.dev.shell.ModuleSpace.rebindAndCreate(ModuleSpace.java:
458)
                at
com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:49)
                at com.google.gwt.core.client.GWT.create(GWT.java:97)
                at
com.google.gwt.user.cellview.client.CellTable.getDefaultResources(CellTable.java:
468)
                at
com.google.gwt.user.cellview.client.CellTable.<init>(CellTable.java:
549)
                at
com.google.gwt.user.cellview.client.CellTable.<init>(CellTable.java:
526)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getTableWidget(XmlToHtmlServiceImpl.java:
314)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
82)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
$13.onSuccess(XmlToHtmlServiceTest.java:648)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
$13.onSuccess(XmlToHtmlServiceTest.java:1)
                at
com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.onResponseReceived(RequestCallbackAdapter.java:
232)
                at
com.google.gwt.http.client.Request.fireOnResponseReceived(Request.java:
287)
                at com.google.gwt.http.client.RequestBuilder
$1.onReadyStateChange(RequestBuilder.java:395)
                at sun.reflect.GeneratedMethodAccessor28.invoke(Unknown
Source)
                at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
                at java.lang.reflect.Method.invoke(Method.java:597)
                at
com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                at
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                at
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:
172)
                at
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:
337)
                at
com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:
218)
                at
com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:
136)
                at
com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:
561)
                at
com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:
269)
                at
com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:
91)
                at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
                at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:213)
                at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown
Source)
                at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
                at java.lang.reflect.Method.invoke(Method.java:597)
                at
com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                at
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                at
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:
172)
                at
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:
292)
                at
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:
546)
                at
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:
363)
                at java.lang.Thread.run(Thread.java:662)
        [ERROR] Could not load deferred binding result type
'com.google.gwt.user.cellview.client.CellTable_Resources_default_InlineClientBundleGenerator'
        java.lang.ClassNotFoundException: com$google$gwt$user$cellview$client
$CellTable_Resources_default_InlineClientBundleGenerator
                at
com.google.gwt.dev.shell.CompilingClassLoader.findClass(CompilingClassLoader.java:
1061)
                at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
                at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
                at java.lang.Class.forName0(Native Method)
                at java.lang.Class.forName(Class.java:247)
                at
com.google.gwt.dev.shell.ModuleSpace.loadClassFromSourceName(ModuleSpace.java:
654)
                at
com.google.gwt.dev.shell.ModuleSpace.rebindAndCreate(ModuleSpace.java:
458)
                at
com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:49)
                at com.google.gwt.core.client.GWT.create(GWT.java:97)
                at
com.google.gwt.user.cellview.client.CellTable.getDefaultResources(CellTable.java:
468)
                at
com.google.gwt.user.cellview.client.CellTable.<init>(CellTable.java:
549)
                at
com.google.gwt.user.cellview.client.CellTable.<init>(CellTable.java:
526)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getTableWidget(XmlToHtmlServiceImpl.java:
314)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
82)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidgetsInGrid(XmlToHtmlServiceImpl.java:
234)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
213)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getSecTabWidgets(XmlToHtmlServiceImpl.java:
254)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
102)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
197)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getSectionWidget(XmlToHtmlServiceImpl.java:
276)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
97)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
$14.onSuccess(XmlToHtmlServiceTest.java:692)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
$14.onSuccess(XmlToHtmlServiceTest.java:1)
                at
com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.onResponseReceived(RequestCallbackAdapter.java:
232)
                at
com.google.gwt.http.client.Request.fireOnResponseReceived(Request.java:
287)
                at com.google.gwt.http.client.RequestBuilder
$1.onReadyStateChange(RequestBuilder.java:395)
                at sun.reflect.GeneratedMethodAccessor28.invoke(Unknown
Source)
                at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
                at java.lang.reflect.Method.invoke(Method.java:597)
                at
com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                at
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                at
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:
172)
                at
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:
337)
                at
com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:
218)
                at
com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:
136)
                at
com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:
561)
                at
com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:
269)
                at
com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:
91)
                at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
                at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:213)
                at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown
Source)
                at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
                at java.lang.reflect.Method.invoke(Method.java:597)
                at
com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                at
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                at
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:
172)
                at
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:
292)
                at
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:
546)
                at
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:
363)
                at java.lang.Thread.run(Thread.java:662)
        [ERROR] Could not load deferred binding result type
'com.google.gwt.user.cellview.client.CellTable_Resources_default_InlineClientBundleGenerator'
        java.lang.ClassNotFoundException: com$google$gwt$user$cellview$client
$CellTable_Resources_default_InlineClientBundleGenerator
                at
com.google.gwt.dev.shell.CompilingClassLoader.findClass(CompilingClassLoader.java:
1061)
                at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
                at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
                at java.lang.Class.forName0(Native Method)
                at java.lang.Class.forName(Class.java:247)
                at
com.google.gwt.dev.shell.ModuleSpace.loadClassFromSourceName(ModuleSpace.java:
654)
                at
com.google.gwt.dev.shell.ModuleSpace.rebindAndCreate(ModuleSpace.java:
458)
                at
com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:49)
                at com.google.gwt.core.client.GWT.create(GWT.java:97)
                at
com.google.gwt.user.cellview.client.CellTable.getDefaultResources(CellTable.java:
468)
                at
com.google.gwt.user.cellview.client.CellTable.<init>(CellTable.java:
549)
                at
com.google.gwt.user.cellview.client.CellTable.<init>(CellTable.java:
526)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getTableWidget(XmlToHtmlServiceImpl.java:
314)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
82)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidgetsInGrid(XmlToHtmlServiceImpl.java:
234)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
213)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getSecTabWidgets(XmlToHtmlServiceImpl.java:
254)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
215)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getSectionWidget(XmlToHtmlServiceImpl.java:
276)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceImpl.getWidget(XmlToHtmlServiceImpl.java:
97)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
$15.onSuccess(XmlToHtmlServiceTest.java:732)
                at
com.myco.clearing.product.client.xmltohtml.XmlToHtmlServiceTest
$15.onSuccess(XmlToHtmlServiceTest.java:1)
                at
com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.onResponseReceived(RequestCallbackAdapter.java:
232)
                at
com.google.gwt.http.client.Request.fireOnResponseReceived(Request.java:
287)
                at com.google.gwt.http.client.RequestBuilder
$1.onReadyStateChange(RequestBuilder.java:395)
                at sun.reflect.GeneratedMethodAccessor28.invoke(Unknown
Source)
                at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
                at java.lang.reflect.Method.invoke(Method.java:597)
                at
com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                at
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                at
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:
172)
                at
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:
337)
                at
com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:
218)
                at
com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:
136)
                at
com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:
561)
                at
com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:
269)
                at
com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:
91)
                at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
                at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:213)
                at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown
Source)
                at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
                at java.lang.reflect.Method.invoke(Method.java:597)
                at
com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                at
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                at
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:
172)
                at
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:
292)
                at
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:
546)
                at
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:
363)
                at java.lang.Thread.run(Thread.java:662)

--
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 google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.