Re: DevMode as application server

2024-03-25 Thread Jens
You should aim to build a proper war / exploded war. Then everything tomcat 
needs is already in WEB-INF/classes and WEB-INF/lib. 

-- J.

blackh...@gmail.com schrieb am Montag, 25. März 2024 um 13:48:21 UTC+1:

> i cleaned the project and did a full rebuild. which seemed to fix the 
> reload issue.
> Now i need to know how to tell tomcat where my sources are (classpath) 
>
> i have tried using the tomcat without eclipse; So basicly starting it via 
> the (windows) service.
> I also tried starting tomcat from eclipse where you can add the project 
> sources to the classpath.
> But somehow tomcat is not loading the servlets/services
> Op maandag 25 maart 2024 om 13:14:42 UTC+1 schreef Jens:
>
>> Sure you can also use tomcat or any other servlet container as you just 
>> deploy a war file/folder.
>>
>> Does the browser actively reload the page? Or does the compile loop 
>> happen without reloading the page? I never heard of a compile loop so far 
>> so I assume that the browser actively reloads the page. Maybe you have some 
>> reload logic inside your app that is now triggered? For example if your app 
>> uses GWT-RPC you might have code that reloads the page if it detects that 
>> client and server GWT-RPC are out of sync?
>>
>> -- J.
>>
>> blackh...@gmail.com schrieb am Montag, 25. März 2024 um 12:56:56 UTC+1:
>>
>>> Hi Jens,
>>>
>>> Thank you for the quick reply. I have tomcat as external web server.
>>> That should work too, doesn't it?
>>>
>>> My files are compiled in {projectfolder}\GWT\war\demo
>>>
>>> I am letting tomcat point to that folder and if i would add the 
>>> following lines to my demo-codeserver task:
>>>
>>> 
>>>
>>> 
>>>
>>> Then i get the same result. The browser shows compiling demo, this 
>>> completes with the following logging:
>>>
>>> [java] Linking succeeded -- 4.376s
>>>
>>> [java] 13.264s total -- Compile completed
>>>
>>> [java] job's progress set to SERVING: com.sweet.demo.webclient_1_0
>>>
>>> [java] GET /recompile-requester/demo
>>>
>>> [java] Constructing StandardLinkerContext
>>>
>>> But then it starts recompiling again and again...somehow get's stuck in 
>>> a recompile loop.
>>>
>>> Op maandag 25 maart 2024 om 12:41:57 UTC+1 schreef Jens:
>>>
 CodeServer has a parameter named launcherDir which should point to your 
 exploded war directory. CodeServer generates a special index.nocache.js 
 file which needs to be deployed with your war file. Once you have done 
 that, you just have to open the url to your deployed war file.

 So in addition to CodeServer you also need a running jetty (local 
 installation or via docker or possibly via eclipse jetty plugin)

 -- J.

 blackh...@gmail.com schrieb am Montag, 25. März 2024 um 11:40:37 UTC+1:

> Hi all,
>
> With the release of GWT 2.11.0 Using DevMode as an application server 
> is deprecated.
> From the release notes:
> "Using DevMode as an application server is deprecated, and may be 
> removed or changed in a future release. Please migrate local development 
> workflows to using a general purpose server, or a custom 
> ServletContainerLauncher."
>
> We are using the Devmode as an application server and want to change, 
> to also be prepared for the future.
>
> We are using ant as the build tool and i want to know what to set up 
> to make development mode working.
>
> I did try "just" starting the code server via an ant task:
>
> 
>
> 
> classname="com.google.gwt.dev.codeserver.CodeServer">
>
> 
>
> 
>
>  
>
> 
>
> 
>
> 
>
> 
>
> 
>
>  
>
> 
>
> 
>
> 
>
> 
>
> 
>
>  
>
> 
>
> 
>
> 
>
>
> The ant task starts and compiles the code, but when opening the url, 
> it keeps recompiling. part of the log:
>
>
> [java] GET /recompile-requester/demo
>
> [java] Constructing StandardLinkerContext
>
> [java] GET /recompile/demo
>
> [java] Job com.sweet.demo.webclient_1_192
>
> [java] job's progress set to WAITING: com.sweet.demo.webclient_1_192
>
> [java] added job to queue
>
> [java] starting job: com.foxboro.foxnl.base.demo.webclient_1_192
>
> [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192
>
> [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192
>
> [java] Constructing StandardLinkerContext
>
> [java] binding: user.agent=safari
>
> [java] skipped compile because no input files have changed
>
> [java] 0.187s total -- Compile completed
>
> [java] job's progress set to SERVING: com.sweet.demo.webclient_1_192
>
> [java] job's progress set to GONE: com.sweet.demo.webclient_1_191
>
> [java] GET /recompile-requester/demo
>
>
> Am i missing a parameter or is do i have

Re: DevMode as application server

2024-03-25 Thread blackh...@gmail.com
i cleaned the project and did a full rebuild. which seemed to fix the 
reload issue.
Now i need to know how to tell tomcat where my sources are (classpath) 

i have tried using the tomcat without eclipse; So basicly starting it via 
the (windows) service.
I also tried starting tomcat from eclipse where you can add the project 
sources to the classpath.
But somehow tomcat is not loading the servlets/services
Op maandag 25 maart 2024 om 13:14:42 UTC+1 schreef Jens:

> Sure you can also use tomcat or any other servlet container as you just 
> deploy a war file/folder.
>
> Does the browser actively reload the page? Or does the compile loop happen 
> without reloading the page? I never heard of a compile loop so far so I 
> assume that the browser actively reloads the page. Maybe you have some 
> reload logic inside your app that is now triggered? For example if your app 
> uses GWT-RPC you might have code that reloads the page if it detects that 
> client and server GWT-RPC are out of sync?
>
> -- J.
>
> blackh...@gmail.com schrieb am Montag, 25. März 2024 um 12:56:56 UTC+1:
>
>> Hi Jens,
>>
>> Thank you for the quick reply. I have tomcat as external web server.
>> That should work too, doesn't it?
>>
>> My files are compiled in {projectfolder}\GWT\war\demo
>>
>> I am letting tomcat point to that folder and if i would add the following 
>> lines to my demo-codeserver task:
>>
>> 
>>
>> 
>>
>> Then i get the same result. The browser shows compiling demo, this 
>> completes with the following logging:
>>
>> [java] Linking succeeded -- 4.376s
>>
>> [java] 13.264s total -- Compile completed
>>
>> [java] job's progress set to SERVING: com.sweet.demo.webclient_1_0
>>
>> [java] GET /recompile-requester/demo
>>
>> [java] Constructing StandardLinkerContext
>>
>> But then it starts recompiling again and again...somehow get's stuck in a 
>> recompile loop.
>>
>> Op maandag 25 maart 2024 om 12:41:57 UTC+1 schreef Jens:
>>
>>> CodeServer has a parameter named launcherDir which should point to your 
>>> exploded war directory. CodeServer generates a special index.nocache.js 
>>> file which needs to be deployed with your war file. Once you have done 
>>> that, you just have to open the url to your deployed war file.
>>>
>>> So in addition to CodeServer you also need a running jetty (local 
>>> installation or via docker or possibly via eclipse jetty plugin)
>>>
>>> -- J.
>>>
>>> blackh...@gmail.com schrieb am Montag, 25. März 2024 um 11:40:37 UTC+1:
>>>
 Hi all,

 With the release of GWT 2.11.0 Using DevMode as an application server 
 is deprecated.
 From the release notes:
 "Using DevMode as an application server is deprecated, and may be 
 removed or changed in a future release. Please migrate local development 
 workflows to using a general purpose server, or a custom 
 ServletContainerLauncher."

 We are using the Devmode as an application server and want to change, 
 to also be prepared for the future.

 We are using ant as the build tool and i want to know what to set up to 
 make development mode working.

 I did try "just" starting the code server via an ant task:

 

 >>>
 classname="com.google.gwt.dev.codeserver.CodeServer">

 

 

  

 

 

 

 

 

  

 

 

 

 

 

  

 

 

 


 The ant task starts and compiles the code, but when opening the url, it 
 keeps recompiling. part of the log:


 [java] GET /recompile-requester/demo

 [java] Constructing StandardLinkerContext

 [java] GET /recompile/demo

 [java] Job com.sweet.demo.webclient_1_192

 [java] job's progress set to WAITING: com.sweet.demo.webclient_1_192

 [java] added job to queue

 [java] starting job: com.foxboro.foxnl.base.demo.webclient_1_192

 [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192

 [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192

 [java] Constructing StandardLinkerContext

 [java] binding: user.agent=safari

 [java] skipped compile because no input files have changed

 [java] 0.187s total -- Compile completed

 [java] job's progress set to SERVING: com.sweet.demo.webclient_1_192

 [java] job's progress set to GONE: com.sweet.demo.webclient_1_191

 [java] GET /recompile-requester/demo


 Am i missing a parameter or is do i have the wrong approach?




-- 
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/43aec035-61c9-4b2d-9121-f3

Re: DevMode as application server

2024-03-25 Thread Jens
Sure you can also use tomcat or any other servlet container as you just 
deploy a war file/folder.

Does the browser actively reload the page? Or does the compile loop happen 
without reloading the page? I never heard of a compile loop so far so I 
assume that the browser actively reloads the page. Maybe you have some 
reload logic inside your app that is now triggered? For example if your app 
uses GWT-RPC you might have code that reloads the page if it detects that 
client and server GWT-RPC are out of sync?

-- J.

blackh...@gmail.com schrieb am Montag, 25. März 2024 um 12:56:56 UTC+1:

> Hi Jens,
>
> Thank you for the quick reply. I have tomcat as external web server.
> That should work too, doesn't it?
>
> My files are compiled in {projectfolder}\GWT\war\demo
>
> I am letting tomcat point to that folder and if i would add the following 
> lines to my demo-codeserver task:
>
> 
>
> 
>
> Then i get the same result. The browser shows compiling demo, this 
> completes with the following logging:
>
> [java] Linking succeeded -- 4.376s
>
> [java] 13.264s total -- Compile completed
>
> [java] job's progress set to SERVING: com.sweet.demo.webclient_1_0
>
> [java] GET /recompile-requester/demo
>
> [java] Constructing StandardLinkerContext
>
> But then it starts recompiling again and again...somehow get's stuck in a 
> recompile loop.
>
> Op maandag 25 maart 2024 om 12:41:57 UTC+1 schreef Jens:
>
>> CodeServer has a parameter named launcherDir which should point to your 
>> exploded war directory. CodeServer generates a special index.nocache.js 
>> file which needs to be deployed with your war file. Once you have done 
>> that, you just have to open the url to your deployed war file.
>>
>> So in addition to CodeServer you also need a running jetty (local 
>> installation or via docker or possibly via eclipse jetty plugin)
>>
>> -- J.
>>
>> blackh...@gmail.com schrieb am Montag, 25. März 2024 um 11:40:37 UTC+1:
>>
>>> Hi all,
>>>
>>> With the release of GWT 2.11.0 Using DevMode as an application server is 
>>> deprecated.
>>> From the release notes:
>>> "Using DevMode as an application server is deprecated, and may be 
>>> removed or changed in a future release. Please migrate local development 
>>> workflows to using a general purpose server, or a custom 
>>> ServletContainerLauncher."
>>>
>>> We are using the Devmode as an application server and want to change, to 
>>> also be prepared for the future.
>>>
>>> We are using ant as the build tool and i want to know what to set up to 
>>> make development mode working.
>>>
>>> I did try "just" starting the code server via an ant task:
>>>
>>> >> >
>>>
>>> >>
>>> classname="com.google.gwt.dev.codeserver.CodeServer">
>>>
>>> 
>>>
>>> 
>>>
>>>  
>>>
>>> 
>>>
>>> 
>>>
>>> 
>>>
>>> 
>>>
>>> 
>>>
>>>  
>>>
>>> 
>>>
>>> 
>>>
>>> 
>>>
>>> 
>>>
>>> 
>>>
>>>  
>>>
>>> 
>>>
>>> 
>>>
>>> 
>>>
>>>
>>> The ant task starts and compiles the code, but when opening the url, it 
>>> keeps recompiling. part of the log:
>>>
>>>
>>> [java] GET /recompile-requester/demo
>>>
>>> [java] Constructing StandardLinkerContext
>>>
>>> [java] GET /recompile/demo
>>>
>>> [java] Job com.sweet.demo.webclient_1_192
>>>
>>> [java] job's progress set to WAITING: com.sweet.demo.webclient_1_192
>>>
>>> [java] added job to queue
>>>
>>> [java] starting job: com.foxboro.foxnl.base.demo.webclient_1_192
>>>
>>> [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192
>>>
>>> [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192
>>>
>>> [java] Constructing StandardLinkerContext
>>>
>>> [java] binding: user.agent=safari
>>>
>>> [java] skipped compile because no input files have changed
>>>
>>> [java] 0.187s total -- Compile completed
>>>
>>> [java] job's progress set to SERVING: com.sweet.demo.webclient_1_192
>>>
>>> [java] job's progress set to GONE: com.sweet.demo.webclient_1_191
>>>
>>> [java] GET /recompile-requester/demo
>>>
>>>
>>> Am i missing a parameter or is do i have the wrong approach?
>>>
>>>
>>>

-- 
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/d3e44db5-c0f1-4ba7-818f-5ca6dafceb64n%40googlegroups.com.


Re: DevMode as application server

2024-03-25 Thread blackh...@gmail.com
Hi Jens,

Thank you for the quick reply. I have tomcat as external web server.
That should work too, doesn't it?

My files are compiled in {projectfolder}\GWT\war\demo

I am letting tomcat point to that folder and if i would add the following 
lines to my demo-codeserver task:





Then i get the same result. The browser shows compiling demo, this 
completes with the following logging:

[java] Linking succeeded -- 4.376s

[java] 13.264s total -- Compile completed

[java] job's progress set to SERVING: com.sweet.demo.webclient_1_0

[java] GET /recompile-requester/demo

[java] Constructing StandardLinkerContext

But then it starts recompiling again and again...somehow get's stuck in a 
recompile loop.

Op maandag 25 maart 2024 om 12:41:57 UTC+1 schreef Jens:

> CodeServer has a parameter named launcherDir which should point to your 
> exploded war directory. CodeServer generates a special index.nocache.js 
> file which needs to be deployed with your war file. Once you have done 
> that, you just have to open the url to your deployed war file.
>
> So in addition to CodeServer you also need a running jetty (local 
> installation or via docker or possibly via eclipse jetty plugin)
>
> -- J.
>
> blackh...@gmail.com schrieb am Montag, 25. März 2024 um 11:40:37 UTC+1:
>
>> Hi all,
>>
>> With the release of GWT 2.11.0 Using DevMode as an application server is 
>> deprecated.
>> From the release notes:
>> "Using DevMode as an application server is deprecated, and may be removed 
>> or changed in a future release. Please migrate local development workflows 
>> to using a general purpose server, or a custom ServletContainerLauncher."
>>
>> We are using the Devmode as an application server and want to change, to 
>> also be prepared for the future.
>>
>> We are using ant as the build tool and i want to know what to set up to 
>> make development mode working.
>>
>> I did try "just" starting the code server via an ant task:
>>
>> 
>>
>> >
>> classname="com.google.gwt.dev.codeserver.CodeServer">
>>
>> 
>>
>> 
>>
>>  
>>
>> 
>>
>> 
>>
>> 
>>
>> 
>>
>> 
>>
>>  
>>
>> 
>>
>> 
>>
>> 
>>
>> 
>>
>> 
>>
>>  
>>
>> 
>>
>> 
>>
>> 
>>
>>
>> The ant task starts and compiles the code, but when opening the url, it 
>> keeps recompiling. part of the log:
>>
>>
>> [java] GET /recompile-requester/demo
>>
>> [java] Constructing StandardLinkerContext
>>
>> [java] GET /recompile/demo
>>
>> [java] Job com.sweet.demo.webclient_1_192
>>
>> [java] job's progress set to WAITING: com.sweet.demo.webclient_1_192
>>
>> [java] added job to queue
>>
>> [java] starting job: com.foxboro.foxnl.base.demo.webclient_1_192
>>
>> [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192
>>
>> [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192
>>
>> [java] Constructing StandardLinkerContext
>>
>> [java] binding: user.agent=safari
>>
>> [java] skipped compile because no input files have changed
>>
>> [java] 0.187s total -- Compile completed
>>
>> [java] job's progress set to SERVING: com.sweet.demo.webclient_1_192
>>
>> [java] job's progress set to GONE: com.sweet.demo.webclient_1_191
>>
>> [java] GET /recompile-requester/demo
>>
>>
>> Am i missing a parameter or is do i have the wrong approach?
>>
>>
>>

-- 
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/bf6b3737-c207-419d-8006-75d2af6e6c57n%40googlegroups.com.


Re: DevMode as application server

2024-03-25 Thread Jens
CodeServer has a parameter named launcherDir which should point to your 
exploded war directory. CodeServer generates a special index.nocache.js 
file which needs to be deployed with your war file. Once you have done 
that, you just have to open the url to your deployed war file.

So in addition to CodeServer you also need a running jetty (local 
installation or via docker or possibly via eclipse jetty plugin)

-- J.

blackh...@gmail.com schrieb am Montag, 25. März 2024 um 11:40:37 UTC+1:

> Hi all,
>
> With the release of GWT 2.11.0 Using DevMode as an application server is 
> deprecated.
> From the release notes:
> "Using DevMode as an application server is deprecated, and may be removed 
> or changed in a future release. Please migrate local development workflows 
> to using a general purpose server, or a custom ServletContainerLauncher."
>
> We are using the Devmode as an application server and want to change, to 
> also be prepared for the future.
>
> We are using ant as the build tool and i want to know what to set up to 
> make development mode working.
>
> I did try "just" starting the code server via an ant task:
>
> 
>
> 
> classname="com.google.gwt.dev.codeserver.CodeServer">
>
> 
>
> 
>
>  
>
> 
>
> 
>
> 
>
> 
>
> 
>
>  
>
> 
>
> 
>
> 
>
> 
>
> 
>
>  
>
> 
>
> 
>
> 
>
>
> The ant task starts and compiles the code, but when opening the url, it 
> keeps recompiling. part of the log:
>
>
> [java] GET /recompile-requester/demo
>
> [java] Constructing StandardLinkerContext
>
> [java] GET /recompile/demo
>
> [java] Job com.sweet.demo.webclient_1_192
>
> [java] job's progress set to WAITING: com.sweet.demo.webclient_1_192
>
> [java] added job to queue
>
> [java] starting job: com.foxboro.foxnl.base.demo.webclient_1_192
>
> [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192
>
> [java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192
>
> [java] Constructing StandardLinkerContext
>
> [java] binding: user.agent=safari
>
> [java] skipped compile because no input files have changed
>
> [java] 0.187s total -- Compile completed
>
> [java] job's progress set to SERVING: com.sweet.demo.webclient_1_192
>
> [java] job's progress set to GONE: com.sweet.demo.webclient_1_191
>
> [java] GET /recompile-requester/demo
>
>
> Am i missing a parameter or is do i have the wrong approach?
>
>
>

-- 
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/06134aa2-95f2-4cdf-988f-f7747185aa2an%40googlegroups.com.


DevMode as application server

2024-03-25 Thread blackh...@gmail.com
Hi all,

With the release of GWT 2.11.0 Using DevMode as an application server is 
deprecated.
>From the release notes:
"Using DevMode as an application server is deprecated, and may be removed 
or changed in a future release. Please migrate local development workflows 
to using a general purpose server, or a custom ServletContainerLauncher."

We are using the Devmode as an application server and want to change, to 
also be prepared for the future.

We are using ant as the build tool and i want to know what to set up to 
make development mode working.

I did try "just" starting the code server via an ant task:









 











 











 








The ant task starts and compiles the code, but when opening the url, it 
keeps recompiling. part of the log:


[java] GET /recompile-requester/demo

[java] Constructing StandardLinkerContext

[java] GET /recompile/demo

[java] Job com.sweet.demo.webclient_1_192

[java] job's progress set to WAITING: com.sweet.demo.webclient_1_192

[java] added job to queue

[java] starting job: com.foxboro.foxnl.base.demo.webclient_1_192

[java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192

[java] job's progress set to COMPILING: com.sweet.demo.webclient_1_192

[java] Constructing StandardLinkerContext

[java] binding: user.agent=safari

[java] skipped compile because no input files have changed

[java] 0.187s total -- Compile completed

[java] job's progress set to SERVING: com.sweet.demo.webclient_1_192

[java] job's progress set to GONE: com.sweet.demo.webclient_1_191

[java] GET /recompile-requester/demo


Am i missing a parameter or is do i have the wrong approach?


-- 
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/39245adc-46e2-441b-92a8-113d1116b79en%40googlegroups.com.


Re: Happy New Year 2024 and an Article for JavaScript Developers

2024-03-25 Thread Dr. Lofi Dewanto
... and I also have a Padlet for all the actual infos about GWT / J2CL,
enjoy:

https://bit.ly/GWTIntroPadlet
--
Dr. Lofi Dewanto
https://twitter.com/lofidewanto

Check out my presentation @Navigate 2022 Micro Frontends
https://youtu.be/1lHuGu8OLZU


Am So., 24. März 2024 um 23:48 Uhr schrieb Satguru Srivastava <
ssatg...@gmail.com>:

> I didn't know these GWT UI frameworks existed.
> Very impressive.
> Maybe these should be referenced somewhere on GWT site? Under Resources (
> https://www.gwtproject.org/examples.html) maybe ?
>
> On Friday, December 29, 2023 at 5:00:03 PM UTC-6 Dr. Lofi Dewanto wrote:
>
>> Upps, I thought you just need to login into Medium and can read
>> everything? Normally is just like that.
>>
>> Anyway here is the Friend Link:
>> https://bit.ly/10JS2024friend.
>>
>> Should be possible to read without login with the Friend Link.
>>
>> Enjoy, Lofi.
>>
>> --
>> Dr. Lofi Dewanto
>> https://twitter.com/lofidewanto
>>
>> Check out my presentation @Navigate 2022 Micro Frontends
>> https://youtu.be/1lHuGu8OLZU
>>
>>
>> Filipe Sousa  schrieb am Fr. 29. Dez. 2023 um 20:52:
>>
>>> This is an article for paid subscribers :(
>>>
>>> On Friday, December 29, 2023 at 4:17:29 PM UTC lofid...@gmail.com wrote:
>>>
 A must-read for all *#JavaScript* developers in the New Year of 2024.

 Enjoy the read, and Happy New Year 2024! 🎉🎊

 https://bit.ly/10JS2024

 Lofi

>>> --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "GWT Users" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/google-web-toolkit/IdCaUwSnvoA/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, 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/0bcea129-46c8-4af0-8048-e15b1d73a2dcn%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-web-toolkit/IdCaUwSnvoA/unsubscribe
> .
> To unsubscribe from this group and all its topics, 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/8a2763d6-4295-4b47-b336-6f00d874fe11n%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/CAGM6XmapcjLyqTU1AOZKwBErEznqozmXCkwiGqc_NV_JHn7PQQ%40mail.gmail.com.