Is anyone using Auth0 (for user login) with GWT?

2015-11-19 Thread Matthieu Drenou
Hello,

Has anyone already used the javascript Auth0 (https://auth0.com/) user 
login solution with GWT?
Is there any resource / example somewhere?

thanks,

rgds
Matthieu

-- 
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 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/d/optout.


Accessing instance methods of Overlay objects from JSNI

2010-11-14 Thread Matthieu Speder
Hi,

I've defined the following instance method in a class extending
JavaScriptObject :

public final void Vip_write() {
...
}

I'd like to access this java method from JSNI.
For example in function like :

public final static native void called(Vip v) /*-{
v...@com.test.vip::Vip_write();
}-*/;

But this is rejected but the compiler, complaining about "Illegal
reference to instance method 'Vip_write' in type 'com.test.Vip', which
is an overlay type; only static references to overlay types are
allowed from JSNI".

Behind the scene, I've seen that Vip_write is translated to the
following javascript :

function $Vip_write(this$static){
 ...
}

So I'd like to see something in my called(Vip v) javascript
translation like :

$Vip_write(v);

Of course I could manually insert this exact call in the JSNI code,
but this would then fail as soon as I compile obfuscated.

Another solution would be to define an extra static method

public final static void Vip_write_static(Vip v) {
v.Vip_write();
}

and then call this static method from JSNI. This works but this
translates to

function $Vip_write_static(v) {
$Vip_write(v);
}

which is right, but not really very optimized !

Any idea ?

Thanks,

Matthieu

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: is ZK better than GWT..?

2010-07-31 Thread matthieu vidal
Regarding the ZK license and the community arround it, I don't think.



On 31 juil, 07:41, akhil  wrote:
> pls help me to decide  isZK
>
> ZK better than GWT..?
>
> Regards,
> Akhil

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Client did not send n bytes as expected happening following a retry

2010-03-15 Thread Matthieu Siggen
After some more investigation I think that the problem is linked to
the way Internet Explorer implements the XMLHttpRequest javascript
object. This object is used by GWT to send the request. The link below
explains the details of the issue.

http://www.vistaheads.com/forums/microsoft-public-internetexplorer-general/479422-xmlhttprequest-post-sometimes-fails-when-server-using-keep-aliv.html

I'm thinking of implementing a workaround with a custom
RequestBuilder. RequestBuilder.send() would start a Timer timing out
after 300ms. On timeout it would abort the request and send a new
request. Hopefully this will cancel IE's behaviour of resending the
request with a missing body.

Please don't hesitate to contribute if you've an idea or think this
won't work.

Thanks,

Matthieu

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Client did not send n bytes as expected happening following a retry

2010-03-03 Thread Matthieu Siggen
Hello,

I'm currently working on a GWT 1.7 project for an Intranet application
deployed on Oracle SOA Suite 10.1.3.4.0 and have stumbled onto the
"Client did not send n bytes as expected" exception.

It turns out to be quite difficult to reproduce as we need about 7 or
8 users concurrently accessing the application for nearly 2 hours to
get the exception to occur. Moreover, the clients have to be in our
customer's network as we have never been able to reproduce the
exception in our own network. The cost involved in reproducing the
issue unfortunately limits our options. One direct consequence of this
is that tests have only been run using IE7 which is the only browser
supported by our customer.

In my investigation, I made sure all users would run an HTTP
Monitoring software that would log every request/response for that
client. I found out that the request is first sent correctly with its
associated data. However, for unknown reasons (possibly network
failure) the request is sent a second time about 500-600 ms later with
the same request header but omitting the associated data. At that
point, the J2EE application server reads the request and rightfully
complains about missing data. Note that the second request header
still set a greater than 0 content-length (actually the exact same as
in the first request).

I believe this means one GWT, IE7 or a lower level transport layer
implements a retry mechanism that omits to resend the data in spite of
resending the exact same header.

Does anyone know whether GWT implements such a retry mechanism?

Thanks,

Matthieu

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Capturing international addresses!!

2009-11-07 Thread matthieu vidal

Hi

it's a old old problem. You should have a look here EDIFACT is
struggling with this kind of problem since a long time now.

http://www.unece.org/trade/untdid/d08b/tisd/tisdads.htm

http://www.unece.org/trade/untdid/d08b/trsd/trsdnad.htm

regards

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: UiBinder Issue

2009-11-07 Thread matthieu vidal

Thank's for this return

Regarding the error message produced by this problem, that's mean that
XML Validation is mandatory.

I have more and more doubt about the benefit of UIBinder :

- ui.xml files are made of a new language (XML schema validation is
obviously mandatory) and we still have to to handle the java widget
object in their own java classes.

Sorry if I've missed something obvious.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: UiBinder Issue

2009-11-06 Thread matthieu vidal

Hi

You should have a problem with the file Query.ui.xml file name( not in
the right place or bad name probably)

regards

On 6 nov, 06:31, drobe  wrote:
> Hey, so I've been attempting to work with UiBinder with GWT 2.0 and
> can't seem to see why my module will not compile. Does anyone see
> anything I'm doing wrong? Thanks
>
> Query.gwt.xml
> 
>   
>   
>   
> 
>
> Query.java
> public class Query implements EntryPoint {
>         interface Binder extends UiBinder { }
>         private static final Binder binder = GWT.create(Binder.class);
>
>   public void onModuleLoad() {
>             DockLayoutPanel outer = binder.createAndBindUi(this);
>
>             RootLayoutPanel root = RootLayoutPanel.get();
>             root.add(outer);
>             root.layout();
>   }
>
> }
>
> And the error:
> java.lang.RuntimeException: Deferred binding failed for
> 'com.xx.client.Query$Binder' (did you forget to inherit a required
> module?)
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: What I were wrong?

2009-11-04 Thread matthieu vidal

Hi

You should look here :

http://code.google.com/intl/fr/webtoolkit/doc/1.6/DevGuideCodingBasics.html#DevGuideJSON


On 4 nov, 14:17, Nguyen Kim Kha  wrote:
> I use JSONParser on client-side, and this is error message ion Hosted
> Mode:
>
> No source code is available for type
> com.google.gwt.json.client.JSONParser; did you forget to inherit a
> required module?
>
> How to parse JSON on client-side? And the JSONParser class is used for
> what???
>
> Thanks for helping...
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Issues using Eclipse and GWT Plugin in Ubuntu Karmic (9.10)

2009-11-04 Thread matthieu vidal

Hi Bob

I guess this is a problem between ubuntu karmic and eclipse < 3.6 ,
I've fixed this with this post :

http://www.norio.be/blog/2009/10/problems-eclipse-buttons-ubuntu-910

launch your eclipse with the following env variable :

#!/bin/sh
export GDK_NATIVE_WINDOWS=1
/opt/eclipse-3.5/eclipse


regards.


On 3 nov, 12:43, Bob Rozelle  wrote:
> Jason,
>
> Thanks for looking into this.  When I get time I'm going to report the
> search problem on Build id: 20090920-1017 to Ubuntu and Eclipse.  Just
> a little busy right now.  I found that search is working if I hit
> return while in the search box, but not when I press the search
> button.
>
> On Nov 2, 2:15 pm, Jason Parekh  wrote:
>
> > Hey guys,
>
> > Typically when this happens, the flavor of Eclipse (e.g. Eclipse for Java)
> > does not have the necessary update sites bundled to get the missing
> > dependencies (in this case, WST).  I'll try verifying this tonight on a
> > Karmic machine.
>
> > jason
>
> > 2009/11/1 ddawster zhang 
>
> > > On 11月1日, 下午7时10分, Bob Rozelle  wrote:
> > > > Upgraded to Ubuntu Karmic and now I'm having issues:
>
> > > > I've got my own copy of Eclipse Gallileo (Build id: 20090920-1017),
> > > > everything worked fine before the upgrade, but now the search
> > > > mechanisms are broken (in file and through the search tab). Click the
> > > > Search Button and nothing happens.
>
> > > > So I thought, let me check out the "official Ubuntu" version of
> > > > eclipse (Version: 3.5.1
> > > > Build id: M20090917-0800).  I started that up and attempted to install
> > > > the GWT Plugin and got the following error:
>
> > > > one or more required items could not be found.
> > > >   Software being installed: Google Plugin for Eclipse 3.5
> > > > 1.1.2.v200910131704
> > > > (com.google.gdt.eclipse.suite.e35.feature.feature.group
> > > > 1.1.2.v200910131704)
> > > >   Missing requirement: Google Plugin for Eclipse 3.5
> > > > 1.1.2.v200910131704
> > > > (com.google.gdt.eclipse.suite.e35.feature.feature.group
> > > > 1.1.2.v200910131704) requires 'org.eclipse.wst.sse.ui 0.0.0' but it
> > > > could not be found
>
> > > > Any thoughts?
>
> > > > Bob
>
> > > me too
>
> > > The problem if you had solved.Please send a email to  me. my email is
> > > ddaws...@gmail.com  Thanks!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Caused by: java.security.AccessControlException: access denied

2009-09-05 Thread matthieu vidal

Hi

I've got this same error in my log since I've update to 1.2.5.

This error appears only once at the first query instruction on my
local database. Nevertheless I can test normally and it seems that
this error has no consequence.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



Re: GWT client side annotations

2009-07-18 Thread matthieu vidal

Hi,

Client side java code is a subset of the entire JRE as it has to be
translate to javascript.

You should have a look here :

http://code.google.com/intl/fr/webtoolkit/doc/1.6/RefJreEmulation.html


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Web Mode problem (linux + FF3.5)

2009-07-16 Thread matthieu vidal

Hi, thanks for your advice.

it's not easy to understand but firebug gives me the right clue.

The problem is about using setCellWidth method before the add method :

panel.setCellWidth(lblText, IConstant.LBL_TEXT_WIDTH);
panel.add(lblText);

The hosted mode (linux only ?) do not complain when the web mode FF3.5
send this incomprehensible exception.

I've added the issue :

http://code.google.com/p/google-web-toolkit/issues/detail?id=3847


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Web Mode problem (linux + FF3.5)

2009-07-16 Thread matthieu vidal

Don't ask me what I have done but now I have a problem with a file
called g !!!

com.google.gwt.core.client.JavaScriptException (TypeError): g is null
fileName: 
http://localhost:8080/dewatcher/EA7F6AC8052D172CCE58E52CC36344BC.cache.html

^_^

maybe at z  the problem will disapear.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Web Mode problem (linux + FF3.5)

2009-07-16 Thread matthieu vidal

Hi

It was working and suddenly it's drive me crazy (GWT 1.7 with Google
Plugin)

it's working fine in hosted mode but suddenly in Web Mode with FF3.5 I
have this strange Exception when running :

com.google.gwt.core.client.JavaScriptException (TypeError): f is null
fileName ...

I don't know what "f" name refers to.

I've cleared cache, compile again and again but I'm stucked.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Will Google Plugin for Eclipse lineup with Eclipse Galileo Release ?

2009-07-13 Thread matthieu vidal

Hi

Thanks for your answer.

Yes Eclipse 64 bit is working fine with Google Pluggin (using the ia32-
java-6-sun-1.6 JRE). No problem with that. the only point is that it's
not easy to manage 2 differents JRE

I understand that OOPHM will be a great improvement so I will wait for
that.

Thanks

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Strange Key behaviour from DialogBox to main window

2009-07-13 Thread matthieu vidal

Hi,

I searched about this problem for a long time. Sorry If I've missed
the answer from the archives.

This problem can be reproduced from the "Google Web application
project" code stub : If you change the method
closeButton.addClickHandler by setting the focus to "nameField"
instead of "sendButton" like this :

// Add a handler to close the DialogBox
closeButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
dialogBox.hide();
sendButton.setEnabled(true);
nameField.setFocus(true);
}
});

Then the key up event (used to simulate the click on the
dialogBox.closeButton) is propagated to the nameField widget and
executed again.

Does someone know a way to handle this problem ?

Thanks.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Will Google Plugin for Eclipse lineup with Eclipse Galileo Release ?

2009-07-10 Thread matthieu vidal

I have the same request about 64-bit Linux support !!

On Jul 10, 8:56 am, pappfer  wrote:
> I'm also waiting for this plugin.
> It'd be the best if one would come with 64-bit Linux support, too. I
> know I can make it work with 32-bit JRE, but still... it's just not
> the same.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: GWT 1.6 Jetty Problem

2009-06-05 Thread Matthieu

Finally, its was something very simple, the gwt-servlet.jar was not
the first in my classpath so I guess another version of Jetty was
loaded but this version didn't have the method setReuseAddress.

Thank you

On Jun 5, 12:50 pm, Matthieu  wrote:
> Hi everyone,
>
> I'm right now porting an old GWT application from 1.4.10 to 1.6.4. I
> changed my project structure, updated to the new jars version and
> switched to the new HostedServer. Now, I'm facing a problem with the
> Jetty server. When I run my application in Eclipse, the hosted mode
> window is shown correctly but after like 5-10 seconds of loading, I
> receive a NoSuchMethodError exception. Here the full (but quite small)
> stack trace received :
>
> Exception in thread "main" java.lang.NoSuchMethodError:
> org.mortbay.jetty.AbstractConnector.setReuseAddress(Z)V
>         at com.google.gwt.dev.shell.jetty.JettyLauncher.start
> (JettyLauncher.java:462)
>         at com.google.gwt.dev.HostedMode.doStartUpServer(HostedMode.java:365)
>         at com.google.gwt.dev.HostedModeBase.startUp(HostedModeBase.java:590)
>         at com.google.gwt.dev.HostedModeBase.run(HostedModeBase.java:397)
>         at com.google.gwt.dev.HostedMode.main(HostedMode.java:232)
>
> Maybe I did something when converting the project but is hard to know
> what exactly. If this already happened to someone or if anybody have
> clues, I would greatly appreciate to know them :)
>
> Thank you for your help,
>
> Matthieu
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



GWT 1.6 Jetty Problem

2009-06-05 Thread Matthieu

Hi everyone,

I'm right now porting an old GWT application from 1.4.10 to 1.6.4. I
changed my project structure, updated to the new jars version and
switched to the new HostedServer. Now, I'm facing a problem with the
Jetty server. When I run my application in Eclipse, the hosted mode
window is shown correctly but after like 5-10 seconds of loading, I
receive a NoSuchMethodError exception. Here the full (but quite small)
stack trace received :

Exception in thread "main" java.lang.NoSuchMethodError:
org.mortbay.jetty.AbstractConnector.setReuseAddress(Z)V
at com.google.gwt.dev.shell.jetty.JettyLauncher.start
(JettyLauncher.java:462)
at com.google.gwt.dev.HostedMode.doStartUpServer(HostedMode.java:365)
at com.google.gwt.dev.HostedModeBase.startUp(HostedModeBase.java:590)
at com.google.gwt.dev.HostedModeBase.run(HostedModeBase.java:397)
at com.google.gwt.dev.HostedMode.main(HostedMode.java:232)

Maybe I did something when converting the project but is hard to know
what exactly. If this already happened to someone or if anybody have
clues, I would greatly appreciate to know them :)

Thank you for your help,

Matthieu
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: PureMVC

2008-10-24 Thread Matthieu

Hi,

>>>Flemming Boller
 We used Gwt only component too.
Our mediator give this components a  'Gwt ClickListener' wich send
Pure Notification.

Matthieu.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Annoucement. PureMVC4GWT RC is available

2008-09-25 Thread Matthieu

I'm agree with you, the pureMvc MultiCore edition use instance instead
of factory.

The probleme is to allow people to write non "State-less" command.
All the "principles" will not guarantee that it will not happen.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Annoucement. PureMVC4GWT RC is available

2008-09-25 Thread Matthieu

Hi,

This is the solution we use in pureMvc MultiCore Edition.
But Cliff is not satisfied with it. He doesn't want that users can
manage the life cicle of a command.

We search a solution on the generator side.

Thanks for your interest.

Matthieu

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---