Re: GWT PORTLET

2012-03-09 Thread Nitheesh Chandran
Can you tell me more specifically ? I want to create a portlet then
integrate that with GWT app. How to create portlet ,then how to
integrate it with gwt app ?

On Mar 9, 3:26 pm, Nitheesh Chandran 
wrote:
> Sorry gwt-portlet.jar
>
> On Mar 9, 3:20 pm, Nitheesh Chandran 
> wrote:
>
>
>
>
>
>
>
> > Hello ,
> > I want to create portlet using GWT. I searched in the Internet and
> > downloaded get-portlet.jar. But the hello world app failed. Is there
> > any other way for creating portlet in GWT. ? Helps will be
> > appreciated. Thanks in advance.

-- 
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: How to share an RPC RemoteServiceServlet between apps?

2012-03-09 Thread Alfredo Quiroga-Villamil
Rob:

If I am not mistaken you can override in your ServiceImplementation a
couple of methods (your choice which one). In RemoteServiceServlet, you
will find:

getSerializationPolicy
doGetSerializationPolicy
Likely the latter will be easier to override. There, "moduleBaseURL" should
help you do what you want. You'll have to set it to the same baseURL
regardless of what the client sends.

Hope that helps.

Regards,

Alfredo

On Fri, Mar 9, 2012 at 10:10 PM, Rob  wrote:

> Hi,
> I want to have a service used by several modules. I put the implementation
> servlet in a root web app, and connected to it, from the client side, by
> specifying the endpoint like this...
>
>   ServiceDefTarget t = (ServiceDefTarget)service;
>   t.setServiceEntryPoint("/commonService");
>
> So "/commonService" is url path that maps to the servlet.  But when it
> connects I get errors on the server side:
>
>   ERROR: The serialization policy file
> '/forums/discussions/7B344C69AD493C1EC707EC98FE148AA0.gwt.rpc' was not
> found;
>   did you forget to include it in this deployment?
>
> So it appears that on the server side, in the shared web app, it's looking
> for an rpc file with a path "forums/discussions" which is specific to the
> client module.  I can get things to work by copying these files to the
> shared web app, but that means I'll have to create copies of the .rpc files
> at different paths for every client that uses the shared service.
>
> Is there way way to avoid this by telling the servlet where to find the
> rpc files, or ... ?
>
> thanks,
> Rob
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-web-toolkit/-/iIzZ0K7XhEgJ.
> 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.
>



-- 
Alfredo Quiroga-Villamil

AOL/Yahoo/Gmail/MSN IM:  lawwton

-- 
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: CellTable styles incorrectly on IE9

2012-03-09 Thread JoseM
So then it seems that this is related to that other bug where GWT thinks the 
browser is Chrome since Chrome Frame is installed (but maybe not being used) 
and it uses the webkit specific browser code and not the Trident/IE one. (I 
believe the bug is more of a Chromium bug than a GWT bug). 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/J-jLIimZuZ8J.
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.



Is there any way to remove the sort arrow decorator in a header of a CellTable?

2012-03-09 Thread JoseM
You can control what to show for that with the CellTable Resources. You would 
have to pass in your own resources to the CellTable constructor that overrides 
the sort style to display what you want. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/qPY0Iep7nRsJ.
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.



How to share an RPC RemoteServiceServlet between apps?

2012-03-09 Thread Rob
Hi,
I want to have a service used by several modules. I put the implementation 
servlet in a root web app, and connected to it, from the client side, by 
specifying the endpoint like this...

  ServiceDefTarget t = (ServiceDefTarget)service;
  t.setServiceEntryPoint("/commonService");

So "/commonService" is url path that maps to the servlet.  But when it 
connects I get errors on the server side:

  ERROR: The serialization policy file 
'/forums/discussions/7B344C69AD493C1EC707EC98FE148AA0.gwt.rpc' was not 
found; 
  did you forget to include it in this deployment?

So it appears that on the server side, in the shared web app, it's looking 
for an rpc file with a path "forums/discussions" which is specific to the 
client module.  I can get things to work by copying these files to the 
shared web app, but that means I'll have to create copies of the .rpc files 
at different paths for every client that uses the shared service.  

Is there way way to avoid this by telling the servlet where to find the rpc 
files, or ... ?

thanks,
Rob

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/iIzZ0K7XhEgJ.
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.



FlexTable in ScrollPanel still has no scroll bars

2012-03-09 Thread Vitaly Trifanov
Hello.
I use DockLayoutPanel as root panel for my GWT app.
In it's center I have a FlexTable, and I want vertical scroll bar to
appear if content doesn't fit screen vertically.
I put a FlexTable into a ScrollPanel, but it doesn't work.

Please, help :)

-- 
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: CellTable styles incorrectly on IE9

2012-03-09 Thread Patrick Tucker
Turns out someone installed Chrome Frame on this machine.  It works fine 
when disabled...

On Friday, March 9, 2012 3:07:49 PM UTC-5, Patrick Tucker wrote:

> I'm having the same problem with one of the machines at my work, but the 
> others work fine.  Really strange, if you look at the HTML in Developer 
> Tools, the elements that are in the TBODY element, which are supposed to be 
> TR and TD elements, are DIV elments. 
>
> Has anyone filed an issue? 
>
> On Saturday, September 24, 2011 7:04:36 PM UTC-4, drtman wrote:
>>
>> If I take the example code directly from the GWT API docs for 
>> CellTable (i.e. the code for an entry point module that creates and 
>> displays a contact table with a manual list), the table that is 
>> displayed has no formatting whatsoever on IE9.  It is just simple left- 
>> justified text with no styling and nothing is selectable.  If I 
>> replace the CellTable with a DataGrid, only the paging control 
>> displays.  On Chrome and Firefox these appear to work.  I have tried 
>> all combinations of styling, tried replacing the CellTable.Resources 
>> with my own styling, etc., etc. and it never works. 
>>
>> Is there a trick to making the new data widgets style properly on IE9?
>
>
> On Saturday, September 24, 2011 7:04:36 PM UTC-4, drtman wrote:
>>
>> If I take the example code directly from the GWT API docs for 
>> CellTable (i.e. the code for an entry point module that creates and 
>> displays a contact table with a manual list), the table that is 
>> displayed has no formatting whatsoever on IE9.  It is just simple left- 
>> justified text with no styling and nothing is selectable.  If I 
>> replace the CellTable with a DataGrid, only the paging control 
>> displays.  On Chrome and Firefox these appear to work.  I have tried 
>> all combinations of styling, tried replacing the CellTable.Resources 
>> with my own styling, etc., etc. and it never works. 
>>
>> Is there a trick to making the new data widgets style properly on IE9?
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/qUx_Iouy120J.
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.



Is there any way to remove the sort arrow decorator in a header of a CellTable?

2012-03-09 Thread Xavier S.
Hello,
I would like to remove the sort arrow from headers of a CellTable but I 
still want to keep the sorting capabilities of the CellTable. (the one in 
the red circle)














Is it possible? And how?

Regards,

Xavier

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/CyG-Sg1LgJIJ.
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 & Spring

2012-03-09 Thread Akram Moncer
@Filippo De Luca
i undersand what u mean but i'm a beginner in dévloppment so can u
give me a tutorial or a video that can show me how can i exactelly do
to integrate spring and GWT , thinks.

2012/3/9, Filippo De Luca :
> Usually I implement the Service interface in a Spring bean, and I write the
> RemoteServlet implementation delegating all method to the Spring bean.
> Because the servlet is outside Spring transactional demarcation. You an
> also use threadlocal to pass request and response to the Spring bean (as
> GWT do).
>
> On Friday, March 9, 2012 3:33:19 AM UTC, Xybrek wrote:
>>
>> On 3/8/2012 11:33 PM, Akram Moncer wrote:
>> > hello everybody;
>> >
>> > can some one help me and give me how can i create webapp with spring
>> > framwork on back-end and GWT on front-end ?
>> >
>> > --
>> > Akram MONCER
>> > Personne
>> >
>> > --
>> > 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.
>>
>> In most cases, Spring code is in the GWT RPC (server-side code). Best
>> approach would be through maven, also you might want to use Spring STS
>> Plugin if you are using Eclipse.
>>
>> If you are able to have your GWT project a "Spring nature" then on your
>> GWT RPC code, you can apply the standard Spring codes, i.e
>> in your ServiceImpl code you can override:
>>
>> @Override
>> public void init() ...
>> {
>>   super.init();
>>   WebApplicationContext ctx =
>> WebApplicationContextUtils.getWebApplicationContext(getServletContext());
>>   // Beans
>>   dao = (MyDao)ctx.getBean("myDao");
>> }
>>
>> @Override
>> public void doSomething() {
>>   String something = dao.getSomething(...);
>> }
>>
>>  From here, you can use the beans to do something your app need to
>> accomplish.
>>
>> Of course you should fix your applicationContext.xml and web.xml which
>> you can easily search the web on how to do this.
>>
>> This is just the basic way to integrate GWT and Spring, as the topic is
>> very broad, you can integrate other complex things like Spring
>> authentication etc.
>>
>> Hope this helps.
>>
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-web-toolkit/-/_fMVfXDgoaoJ.
> 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.
>
>


-- 
Akram MONCER
Personne

-- 
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.



Inheriting module resources (images, css etc)

2012-03-09 Thread manstis
Hi,

What is the best practice for inheriting resources?

We've been separating resources from code, much like this:-

Module A

org.test.modulea.client.widgets
->class MyWidget extends Composite {

  private MyResources resources = GWT.create( MyResources.class );

  public static interface MyResources extends ClientBundle {

@Source("../resources/images/anImage.png")
ImageResource anImage();

  }

} etc

org.test.modulea.client.resources.images
-> anImage.png

Module B



However we are finding we need to duplicate the client.resources
package in ModuleB as well.

>From what I have read and understand I believe this is caused by the
relative "source" URI being prefixed with ModuleB's name and hence
they are being looked for in org.test.moduleb.client.resources.images.
Looking at Google's examples images appear to always be in the same
package as the code needing them with no use of "@Source". This I
suspect removes the URI issue.

I'd love to hear what is thought as best practice and how to avoid the
re-use problem we have.

Thanks for reading,

Mike

-- 
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 & Spring

2012-03-09 Thread Filippo De Luca
Usually I implement the Service interface in a Spring bean, and I write the 
RemoteServlet implementation delegating all method to the Spring bean. 
Because the servlet is outside Spring transactional demarcation. You an 
also use threadlocal to pass request and response to the Spring bean (as 
GWT do).

On Friday, March 9, 2012 3:33:19 AM UTC, Xybrek wrote:
>
> On 3/8/2012 11:33 PM, Akram Moncer wrote:
> > hello everybody;
> >
> > can some one help me and give me how can i create webapp with spring
> > framwork on back-end and GWT on front-end ?
> >
> > --
> > Akram MONCER
> > Personne
> >
> > --
> > 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.
>
> In most cases, Spring code is in the GWT RPC (server-side code). Best 
> approach would be through maven, also you might want to use Spring STS 
> Plugin if you are using Eclipse.
>
> If you are able to have your GWT project a "Spring nature" then on your 
> GWT RPC code, you can apply the standard Spring codes, i.e
> in your ServiceImpl code you can override:
>
> @Override
> public void init() ...
> {
>   super.init();
>   WebApplicationContext ctx = 
> WebApplicationContextUtils.getWebApplicationContext(getServletContext());
>   // Beans
>   dao = (MyDao)ctx.getBean("myDao");
> }
>
> @Override
> public void doSomething() {
>   String something = dao.getSomething(...);
> }
>
>  From here, you can use the beans to do something your app need to 
> accomplish.
>
> Of course you should fix your applicationContext.xml and web.xml which 
> you can easily search the web on how to do this.
>
> This is just the basic way to integrate GWT and Spring, as the topic is 
> very broad, you can integrate other complex things like Spring 
> authentication etc.
>
> Hope this helps.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/_fMVfXDgoaoJ.
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.



How to format properties file for Messages and @Select

2012-03-09 Thread Filippo De Luca
Hi,
I have wrote an interface containing this method:

String errorRemovingWidget(@Select Type type);

Type is an enum.

The properties file contains:
errorRemovingWidget=Could not remove widget from dashboard
errorRemovingWidget[A]=Could not remove an A from dashboard
errorRemovingWidget[B]=Could not remove an B from dashboard

But it doesn't work. How the properties file messages should be formatted 
to work with the Select?




-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/TayViQZS7GEJ.
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 PORTLET

2012-03-09 Thread Nitheesh Chandran
Sorry gwt-portlet.jar

On Mar 9, 3:20 pm, Nitheesh Chandran 
wrote:
> Hello ,
> I want to create portlet using GWT. I searched in the Internet and
> downloaded get-portlet.jar. But the hello world app failed. Is there
> any other way for creating portlet in GWT. ? Helps will be
> appreciated. Thanks in advance.

-- 
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.



DatePicker next/prev month events

2012-03-09 Thread Nikola Markovic
Next and previous month buttons in MonthSelector are declared as private 
and have a default behavior of adding/subtracting one month and refreshing 
the datepicker. There are no events that fire when this occurs. I've tried 
to fire my own event, by extending the MonthSelector class and implementing 
a similar solution like in DefaultMonthSelector, plus firing the event. The 
problem is that, while calling addMonth(+1) (or -1) from 
DatePickerComponent i get an illegalAccessModifier exception saying I'm 
trying to access the com.googl... package from my package. 

Tried to work around by calling some other methods, didn't work. 

Tried DateChooser(smartGwt) component, but it's all native code and all I 
can get from the component itself is the name of the Icon rendered as 
next/prev button. Not sure if messing with native code could solve my 
problem here.

Thanks in advance,

Nikola Markovic

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/KZVnZdkp5qIJ.
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 PORTLET

2012-03-09 Thread Viktor
Hi,

you could just include the generated js code into your portlet and
work with it.

Example:



On 9 Mrz., 11:20, Nitheesh Chandran 
wrote:
> Hello ,
> I want to create portlet using GWT. I searched in the Internet and
> downloaded get-portlet.jar. But the hello world app failed. Is there
> any other way for creating portlet in GWT. ? Helps will be
> appreciated. Thanks in advance.

-- 
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 PORTLET

2012-03-09 Thread Nitheesh Chandran
Hello ,
I want to create portlet using GWT. I searched in the Internet and
downloaded get-portlet.jar. But the hello world app failed. Is there
any other way for creating portlet in GWT. ? Helps will be
appreciated. Thanks in advance.

-- 
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.



RPC Serialization of an Interface..

2012-03-09 Thread Viktor
Hi all,

for my application i need to parse custom objects with the simple-xml
framework from the server side. This works fine. But if a make a rpc
call from the client side to geht the Objects i get this Exception:

 [WARN] Exception while dispatching incoming RPC call
com.google.gwt.user.client.rpc.SerializationException: Type 'Media'
was not included in the set of types which can be serialized by this
SerializationPolicy or its Class object could not be loaded. For
security purposes, this type will not be serialized.: instance =
Media@12342d9
at
com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter.serialize(ServerSerializationStreamWriter.java:
619)
at
com.google.gwt.user.client.rpc.impl.AbstractSerializationStreamWriter.writeObject(AbstractSerializationStreamWriter.java:
126)
at
com.google.gwt.user.client.rpc.core.java.util.Collection_CustomFieldSerializerBase.serialize(Collection_CustomFieldSerializerBase.java:
44)
at
com.google.gwt.user.client.rpc.core.java.util.ArrayList_CustomFieldSerializer.serialize(ArrayList_CustomFieldSerializer.java:
39)


The Media Class look like this:

public class Media implements Serializable {

/**
 *
 */
private static final long serialVersionUID = -4959495795968436441L;

public Media() {
}

@Attribute(required=false, name="condition")
private String conditionText = null;

@Attribute(required=false, name="conditiontype")
private Executable.Type conditionType = null;

@Attribute(required=true)
private String src = null;

@Attribute(required=true)
private String type = null;

@Attribute(required=false)
private String name = null;

@Element(required=false)
private Condition condition = null;

public String getSource()
{
return src;
}

public void setSource(String source)
{
this.src = source;
}

public String getType()
{
return type;
}

public void setType(String type)
{
this.type = type;
}

public void setConditionText(String conditionText) {
this.conditionText = conditionText;
}

public String getConditionText() {
return conditionText;
}

public void setConditionTypeText(Executable.Type conditionType) {
this.conditionType = conditionType;
}

public Executable.Type getConditionType() {
return conditionType;
}

public void setCondition(Condition condition) {
this.condition = condition;
}

public Condition getCondition() {
return condition;
}

public void setName(String name) {
this.name = name;
}

public String getName() {
return name;
}

@Commit
public void createCondition() {
if (getConditionType()!=null && getConditionText()!=null)

setCondition(ConditionFactory.createCondition(getConditionType(),
getConditionText()));
}

Executable and Condition are Interfaces.. i guess that is the problem,
because a interface couldn't implement Serializable. Is there a way to
put these interfaces trough rpc? or is there a workaround?

thanks and greetings
Viktor

-- 
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.