Illegal reflective access in RPC serializer

2023-10-30 Thread 'Samuel Padou' via GWT Users
Hi,

Working with Java 21 I have some issues with RPC serializer causing illegal 
reflective access in LinkedHashMap_CustomFieldSerializer.

I see that this has been fixed 
in https://github.com/gwtproject/gwt/issues/9584 but the fix is not 
included in the 2.10 release as far as I can see.

The workaround is to use --add-opens but this basically open the 
full java.util package for reflection which is not ideal. I also tried to 
replace the custom serializer, but due to the way custom serializers are 
loaded (using the exact package name), this doesn't seems possible without 
compiling a custom jar.

Is there any plan to make a release that include the fix for this issue, 
either 2.11 or a path of the 2.10?

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/843a1666-9ac3-49d7-9ef9-2b8681b3653an%40googlegroups.com.


Re: GWT New Project doesn't start because of Jetty problems.

2023-10-30 Thread Victor Colina
Yeah you were right. It works now, the only thing is that it doesn't show 
the gwt elements in the page. 

[image: imagen_2023-10-30_131300242.png]

On Monday, October 30, 2023 at 12:50:40 PM UTC-4 Colin Alworth wrote:

> Sorry, hit send too early - when using CodeServer, you should be sure to 
> start your own tomcat - for whatever reason, that error message at 
> localhost:8080 indicates that tomcat isn't running or isnt reachable at 
> that port. 
>
> On Monday, October 30, 2023 at 11:49:43 AM UTC-5 Colin Alworth wrote:
>
>> At a glance, it appears that you started CodeServer rather than DevMode - 
>> but the default port would have been  rather than 8080 if your app was 
>> hosted by DevMode. 
>>
>> On Monday, October 30, 2023 at 11:42:04 AM UTC-5 lelo...@gmail.com wrote:
>>
>>> Hello thanks for the response. I did change to gwt 2.10 and I'm using 
>>> the Tomcat as the  servlet container like you said. I manage to do this 
>>> steps 
>>> http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/debugging/GWTDevModeAndTomcatWebServer.html
>>>  
>>> I everything is fine until I go to the explorer and this page comes first. 
>>>
>>> [image: 9876.png]
>>>
>>> I change the port and add the /AutoSys1-server/ like the tutorial said 
>>> but this happens. 
>>>
>>> [image: 8080.png]
>>>
>>>
>>> This are some info to give more context: 
>>>
>>> [image: debug-pro.png]
>>> [image: debug.png]
>>>
>>> [image: log.png]
>>>
>>> [image: log2.png]
>>>
>>> On Sunday, October 29, 2023 at 3:37:49 PM UTC-4 Colin Alworth wrote:
>>>
 There are a few options I would suggest:
  * Upgrade to GWT 2.10 (especially since this is a new project). This 
 is probably the simplest and best option. The new version of Jetty used 
 there will not have this issue with scanning module files.
  * Stop using DevMode as an application server - run your own server, 
 using the servlet container of your choice, and either pass -noserver to 
 DevMode, or switch to CodeServer. This is a good idea whether or not you 
 upgrade to GWT 2.10.
  * Downgrade to Java8, or at least remove any dependency that uses 
 Java9+ bytecode. This might be your own project, based on the error 
 messages. This is probably a pretty terrible option, but if your brand new 
 project can't use latest GWT, and it happens that you don't actually need 
 that dependency and it solves the problem, then it might be acceptable. If 
 you actually want the annotation configuration to take place, take 
 one/both 
 of the earlier options.
  * Finally, it is possible to extend JettyLauncher and further 
 customize the types that Jetty will scan. Start by overriding 
 createWebAppContext(), configure the instance created by the super call as 
 desired, then pass -server com.mycompany.myserver.MyCustomJettyLauncher to 
 dev mode when it starts to use this type instead of the built in type.

 On Saturday, October 28, 2023 at 1:03:16 PM UTC-5 lelo...@gmail.com 
 wrote:

> Hello. I'm trying to create a new GWT Project in Eclipse following the 
> official tutorial. I'm using GWT 2.9 + JDK 11. I create the project with 
> the plug in in eclipse but I can't debug the app like the tutorial said. 
>
> Loading Java files in com.ve.siaconca.AutoSys.
>
> Module setup completed in 5740 ms
>
> 2023-10-28 13:34:15.138:INFO:oejs.Server:main: jetty-9.2.z-SNAPSHOT
>
> 2023-10-28 13:34:15.212:INFO:oejsh.ContextHandler:main: Started 
> o.e.j.s.ServletContextHandler@1eb918ed{/,null,AVAILABLE}
>
> 2023-10-28 13:34:15.268:INFO:oejs.ServerConnector:main: Started 
> ServerConnector@37c5c9b9{HTTP/1.1}{127.0.0.1:9876}
>
> 2023-10-28 13:34:15.269:INFO:oejs.Server:main: Started @8336ms
>
>
> The code server is ready at http://127.0.0.1:9876/
>
> Code server started in 6.471 s ms
>
> [ERROR] jreLeakPrevention.gcDaemonFail
>
> java.lang.ClassNotFoundException: sun.misc.GC
>
> at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(
> BuiltinClassLoader.java:581)
>
> at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(
> ClassLoaders.java:178)
>
> at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>
> at java.base/java.lang.Class.forName0(Native Method)
>
> at java.base/java.lang.Class.forName(Class.java:315)
>
> at com.google.gwt.dev.shell.jetty.JettyLauncher.jreLeakPrevention(
> JettyLauncher.java:899)
>
> at com.google.gwt.dev.shell.jetty.JettyLauncher.start(
> JettyLauncher.java:722)
>
> at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:636)
>
> at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:898)
>
> at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:705)
>
> at com.google.gwt.dev.DevMode.main(DevMode.java:432)
>
> 2023-10-28 

Re: GWT New Project doesn't start because of Jetty problems.

2023-10-30 Thread Colin Alworth
Sorry, hit send too early - when using CodeServer, you should be sure to 
start your own tomcat - for whatever reason, that error message at 
localhost:8080 indicates that tomcat isn't running or isnt reachable at 
that port. 

On Monday, October 30, 2023 at 11:49:43 AM UTC-5 Colin Alworth wrote:

> At a glance, it appears that you started CodeServer rather than DevMode - 
> but the default port would have been  rather than 8080 if your app was 
> hosted by DevMode. 
>
> On Monday, October 30, 2023 at 11:42:04 AM UTC-5 lelo...@gmail.com wrote:
>
>> Hello thanks for the response. I did change to gwt 2.10 and I'm using the 
>> Tomcat as the  servlet container like you said. I manage to do this steps 
>> http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/debugging/GWTDevModeAndTomcatWebServer.html
>>  
>> I everything is fine until I go to the explorer and this page comes first. 
>>
>> [image: 9876.png]
>>
>> I change the port and add the /AutoSys1-server/ like the tutorial said 
>> but this happens. 
>>
>> [image: 8080.png]
>>
>>
>> This are some info to give more context: 
>>
>> [image: debug-pro.png]
>> [image: debug.png]
>>
>> [image: log.png]
>>
>> [image: log2.png]
>>
>> On Sunday, October 29, 2023 at 3:37:49 PM UTC-4 Colin Alworth wrote:
>>
>>> There are a few options I would suggest:
>>>  * Upgrade to GWT 2.10 (especially since this is a new project). This is 
>>> probably the simplest and best option. The new version of Jetty used there 
>>> will not have this issue with scanning module files.
>>>  * Stop using DevMode as an application server - run your own server, 
>>> using the servlet container of your choice, and either pass -noserver to 
>>> DevMode, or switch to CodeServer. This is a good idea whether or not you 
>>> upgrade to GWT 2.10.
>>>  * Downgrade to Java8, or at least remove any dependency that uses 
>>> Java9+ bytecode. This might be your own project, based on the error 
>>> messages. This is probably a pretty terrible option, but if your brand new 
>>> project can't use latest GWT, and it happens that you don't actually need 
>>> that dependency and it solves the problem, then it might be acceptable. If 
>>> you actually want the annotation configuration to take place, take one/both 
>>> of the earlier options.
>>>  * Finally, it is possible to extend JettyLauncher and further customize 
>>> the types that Jetty will scan. Start by overriding createWebAppContext(), 
>>> configure the instance created by the super call as desired, then pass 
>>> -server com.mycompany.myserver.MyCustomJettyLauncher to dev mode when it 
>>> starts to use this type instead of the built in type.
>>>
>>> On Saturday, October 28, 2023 at 1:03:16 PM UTC-5 lelo...@gmail.com 
>>> wrote:
>>>
 Hello. I'm trying to create a new GWT Project in Eclipse following the 
 official tutorial. I'm using GWT 2.9 + JDK 11. I create the project with 
 the plug in in eclipse but I can't debug the app like the tutorial said. 

 Loading Java files in com.ve.siaconca.AutoSys.

 Module setup completed in 5740 ms

 2023-10-28 13:34:15.138:INFO:oejs.Server:main: jetty-9.2.z-SNAPSHOT

 2023-10-28 13:34:15.212:INFO:oejsh.ContextHandler:main: Started 
 o.e.j.s.ServletContextHandler@1eb918ed{/,null,AVAILABLE}

 2023-10-28 13:34:15.268:INFO:oejs.ServerConnector:main: Started 
 ServerConnector@37c5c9b9{HTTP/1.1}{127.0.0.1:9876}

 2023-10-28 13:34:15.269:INFO:oejs.Server:main: Started @8336ms


 The code server is ready at http://127.0.0.1:9876/

 Code server started in 6.471 s ms

 [ERROR] jreLeakPrevention.gcDaemonFail

 java.lang.ClassNotFoundException: sun.misc.GC

 at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(
 BuiltinClassLoader.java:581)

 at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(
 ClassLoaders.java:178)

 at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)

 at java.base/java.lang.Class.forName0(Native Method)

 at java.base/java.lang.Class.forName(Class.java:315)

 at com.google.gwt.dev.shell.jetty.JettyLauncher.jreLeakPrevention(
 JettyLauncher.java:899)

 at com.google.gwt.dev.shell.jetty.JettyLauncher.start(
 JettyLauncher.java:722)

 at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:636)

 at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:898)

 at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:705)

 at com.google.gwt.dev.DevMode.main(DevMode.java:432)

 2023-10-28 13:34:15.591:INFO:oejs.Server:main: jetty-9.2.z-SNAPSHOT

 Starting Jetty on port 

 2023-10-28 13:34:18.199:INFO:oejs.ServerConnector:main: Started 
 ServerConnector@677e3282{HTTP/1.1}{127.0.0.1:}

 2023-10-28 13:34:18.202:INFO:oejs.Server:main: Started @11268ms

 [WARN] Failed startup of context 
 

Re: GWT New Project doesn't start because of Jetty problems.

2023-10-30 Thread Colin Alworth
At a glance, it appears that you started CodeServer rather than DevMode - 
but the default port would have been  rather than 8080 if your app was 
hosted by DevMode. 

On Monday, October 30, 2023 at 11:42:04 AM UTC-5 lelo...@gmail.com wrote:

> Hello thanks for the response. I did change to gwt 2.10 and I'm using the 
> Tomcat as the  servlet container like you said. I manage to do this steps 
> http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/debugging/GWTDevModeAndTomcatWebServer.html
>  
> I everything is fine until I go to the explorer and this page comes first. 
>
> [image: 9876.png]
>
> I change the port and add the /AutoSys1-server/ like the tutorial said but 
> this happens. 
>
> [image: 8080.png]
>
>
> This are some info to give more context: 
>
> [image: debug-pro.png]
> [image: debug.png]
>
> [image: log.png]
>
> [image: log2.png]
>
> On Sunday, October 29, 2023 at 3:37:49 PM UTC-4 Colin Alworth wrote:
>
>> There are a few options I would suggest:
>>  * Upgrade to GWT 2.10 (especially since this is a new project). This is 
>> probably the simplest and best option. The new version of Jetty used there 
>> will not have this issue with scanning module files.
>>  * Stop using DevMode as an application server - run your own server, 
>> using the servlet container of your choice, and either pass -noserver to 
>> DevMode, or switch to CodeServer. This is a good idea whether or not you 
>> upgrade to GWT 2.10.
>>  * Downgrade to Java8, or at least remove any dependency that uses Java9+ 
>> bytecode. This might be your own project, based on the error messages. This 
>> is probably a pretty terrible option, but if your brand new project can't 
>> use latest GWT, and it happens that you don't actually need that dependency 
>> and it solves the problem, then it might be acceptable. If you actually 
>> want the annotation configuration to take place, take one/both of the 
>> earlier options.
>>  * Finally, it is possible to extend JettyLauncher and further customize 
>> the types that Jetty will scan. Start by overriding createWebAppContext(), 
>> configure the instance created by the super call as desired, then pass 
>> -server com.mycompany.myserver.MyCustomJettyLauncher to dev mode when it 
>> starts to use this type instead of the built in type.
>>
>> On Saturday, October 28, 2023 at 1:03:16 PM UTC-5 lelo...@gmail.com 
>> wrote:
>>
>>> Hello. I'm trying to create a new GWT Project in Eclipse following the 
>>> official tutorial. I'm using GWT 2.9 + JDK 11. I create the project with 
>>> the plug in in eclipse but I can't debug the app like the tutorial said. 
>>>
>>> Loading Java files in com.ve.siaconca.AutoSys.
>>>
>>> Module setup completed in 5740 ms
>>>
>>> 2023-10-28 13:34:15.138:INFO:oejs.Server:main: jetty-9.2.z-SNAPSHOT
>>>
>>> 2023-10-28 13:34:15.212:INFO:oejsh.ContextHandler:main: Started 
>>> o.e.j.s.ServletContextHandler@1eb918ed{/,null,AVAILABLE}
>>>
>>> 2023-10-28 13:34:15.268:INFO:oejs.ServerConnector:main: Started 
>>> ServerConnector@37c5c9b9{HTTP/1.1}{127.0.0.1:9876}
>>>
>>> 2023-10-28 13:34:15.269:INFO:oejs.Server:main: Started @8336ms
>>>
>>>
>>> The code server is ready at http://127.0.0.1:9876/
>>>
>>> Code server started in 6.471 s ms
>>>
>>> [ERROR] jreLeakPrevention.gcDaemonFail
>>>
>>> java.lang.ClassNotFoundException: sun.misc.GC
>>>
>>> at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(
>>> BuiltinClassLoader.java:581)
>>>
>>> at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(
>>> ClassLoaders.java:178)
>>>
>>> at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>>>
>>> at java.base/java.lang.Class.forName0(Native Method)
>>>
>>> at java.base/java.lang.Class.forName(Class.java:315)
>>>
>>> at com.google.gwt.dev.shell.jetty.JettyLauncher.jreLeakPrevention(
>>> JettyLauncher.java:899)
>>>
>>> at com.google.gwt.dev.shell.jetty.JettyLauncher.start(
>>> JettyLauncher.java:722)
>>>
>>> at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:636)
>>>
>>> at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:898)
>>>
>>> at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:705)
>>>
>>> at com.google.gwt.dev.DevMode.main(DevMode.java:432)
>>>
>>> 2023-10-28 13:34:15.591:INFO:oejs.Server:main: jetty-9.2.z-SNAPSHOT
>>>
>>> Starting Jetty on port 
>>>
>>> 2023-10-28 13:34:18.199:INFO:oejs.ServerConnector:main: Started 
>>> ServerConnector@677e3282{HTTP/1.1}{127.0.0.1:}
>>>
>>> 2023-10-28 13:34:18.202:INFO:oejs.Server:main: Started @11268ms
>>>
>>> [WARN] Failed startup of context 
>>> c.g.g.d.s.j.WebAppContextWithReload@6cc8136b{/,file:/C:/Users/VICTOR/eclipse-workspace/AutoSys/war/,STARTING}{C:\Users\VICTOR\eclipse-workspace\AutoSys\war}
>>>
>>> MultiException[java.lang.RuntimeException: Error scanning file 
>>> AutoSys$1.class, java.lang.RuntimeException: Error scanning file 
>>> AutoSys$1MyHandler$1.class, java.lang.RuntimeException: Error scanning 
>>> file AutoSys$1MyHandler.class, 

Re: GWT Designer

2023-10-30 Thread Sachin Bal
Earlier, I remember when I clicked the source tab, it showed the source 
code which it is showing. And when I used to click the design tab, I could 
see a screen which I could modify. This is explained on 
(https://www.youtube.com/watch?v=kV5H3rGfqOE) at 3:00 min on the video.

I feel that I am missing something and it has been many years since I have 
used GWT Designer, and therefore cannot remember

Do you remember anything which could help me? Thanks

On Monday, October 30, 2023 at 7:10:14 PM UTC+5:30 Edu wrote:

> Hi,
>
> If i remember correctly if you already installed the Designer plugin you 
> need to open the java file that is linked with that xml file using the 
> Designer editor not the default one.
>
> El lun, 30 oct 2023 a las 10:20, Sachin Bal () 
> escribió:
>
>> Hi, 
>>
>> I installed Eclipse Kepler and when I open any ui.xml file, I can see two 
>> tabs, source and design. In the source, I can see the code but in the 
>> design I am not able to see the generated screen. I have a feeling that I 
>> have missed something but I cannot remember exactly. Can you please advise? 
>> Attached below is the source and design screens. It would be great, if you 
>> could guide me. Thanks
>>
>> On Sunday, October 29, 2023 at 7:00:22 PM UTC+5:30 Sachin Bal wrote:
>>
>>> Thanks. I will check the old version of eclipse. I believe it was 
>>> Eclipse Kepler which we had used earlier. 
>>>
>>> Regards
>>> Sachin
>>>
>>> On Saturday, October 28, 2023 at 3:13:56 AM UTC+5:30 Colin Alworth wrote:
>>>
 If memory serves, the GWT Designer tool was never part of GWT itself, 
 but was a component that could be installed in Eclipse, allowing for 
 WYSIWYG UI design (in part by running something like dev mode while you 
 were editing?). Changes that the author of the project made were reflected 
 in standard source files (.java and .ui.xml) that GWT itself was able to 
 compile - as such, a newer compiler version can likely still compile (with 
 small or minimal changes to source) such an old project. I would suggest 
 small steps in upgrading, to keep such changes (if any) manageable. 

 If you're hoping to run GWT Designer itself, you probably need a very 
 old version of eclipse - my memory here is that it wasn't used enough to 
 be 
 worth maintaining. The code still lives at 
 https://github.com/gwt-plugins/gwt-designer, but I can't guess what it 
 would take to bring it back to life. I have a memory of this being based 
 on 
 WindowBuilder, and some internal changes in WindowBuilder requiring 
 substantial changes to the gwt-designer project, which never was done.

 On Friday, October 27, 2023 at 3:19:36 PM UTC-5 sach...@gmail.com 
 wrote:

> Hi All,
>
> We had created an application in 2014-2015. We had used GWT to design 
> the UI of our application.  Unfortunately, we have folded that project in 
> 2017 . I wanted to showcase our project to a prospective customer and was 
> keen to know whether there is some way to migrate the project to the 
> latest 
> version of GWT? 
>
> If that is not possible, I would like to display the screens which we 
> had designed using GWT Designer so that I can at the least create a story 
> around it.
>
> Looking forward to some positive response
>
> Please advise. 
>
> Thanks
> Sachin
>
> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-tool...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/1f61346d-1507-4f79-a26c-91e40655f2c7n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/f52d565a-7778-41a8-852d-bac896931f4an%40googlegroups.com.


Re: GWT Designer

2023-10-30 Thread Edu
Hi,

If i remember correctly if you already installed the Designer plugin you
need to open the java file that is linked with that xml file using the
Designer editor not the default one.

El lun, 30 oct 2023 a las 10:20, Sachin Bal ()
escribió:

> Hi,
>
> I installed Eclipse Kepler and when I open any ui.xml file, I can see two
> tabs, source and design. In the source, I can see the code but in the
> design I am not able to see the generated screen. I have a feeling that I
> have missed something but I cannot remember exactly. Can you please advise?
> Attached below is the source and design screens. It would be great, if you
> could guide me. Thanks
>
> On Sunday, October 29, 2023 at 7:00:22 PM UTC+5:30 Sachin Bal wrote:
>
>> Thanks. I will check the old version of eclipse. I believe it was Eclipse
>> Kepler which we had used earlier.
>>
>> Regards
>> Sachin
>>
>> On Saturday, October 28, 2023 at 3:13:56 AM UTC+5:30 Colin Alworth wrote:
>>
>>> If memory serves, the GWT Designer tool was never part of GWT itself,
>>> but was a component that could be installed in Eclipse, allowing for
>>> WYSIWYG UI design (in part by running something like dev mode while you
>>> were editing?). Changes that the author of the project made were reflected
>>> in standard source files (.java and .ui.xml) that GWT itself was able to
>>> compile - as such, a newer compiler version can likely still compile (with
>>> small or minimal changes to source) such an old project. I would suggest
>>> small steps in upgrading, to keep such changes (if any) manageable.
>>>
>>> If you're hoping to run GWT Designer itself, you probably need a very
>>> old version of eclipse - my memory here is that it wasn't used enough to be
>>> worth maintaining. The code still lives at
>>> https://github.com/gwt-plugins/gwt-designer, but I can't guess what it
>>> would take to bring it back to life. I have a memory of this being based on
>>> WindowBuilder, and some internal changes in WindowBuilder requiring
>>> substantial changes to the gwt-designer project, which never was done.
>>>
>>> On Friday, October 27, 2023 at 3:19:36 PM UTC-5 sach...@gmail.com wrote:
>>>
 Hi All,

 We had created an application in 2014-2015. We had used GWT to design
 the UI of our application.  Unfortunately, we have folded that project in
 2017 . I wanted to showcase our project to a prospective customer and was
 keen to know whether there is some way to migrate the project to the latest
 version of GWT?

 If that is not possible, I would like to display the screens which we
 had designed using GWT Designer so that I can at the least create a story
 around it.

 Looking forward to some positive response

 Please advise.

 Thanks
 Sachin

 --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/1f61346d-1507-4f79-a26c-91e40655f2c7n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/CAM5HcKqZc4NuwczWL7u7Q1-8PT1qOqwHrq7ZOHF9fMsMoRPdxw%40mail.gmail.com.