Deploy GWT App as multiple WAR files?

2011-09-02 Thread George.H
Hi, I have a scenario where I have 1 big GWT project (in eclipse). I manage to split it into 3 projects (Client, Server, RPC) and on my client project I have my ANT scripts that compile everything and package it all into 1 war file. This works. What I need is to have the Client, Server and RPC de

access gwt servlet via rpc ajax call

2011-01-28 Thread George.H
Hi, I have a GWT application running and it contains several servlets. Our regular clients use a GWT client to access the servlets. We have some new clients that need to access the same servlets but via a very minimal client. Like plain javascript using ajax rpc call to retrieve the data. Problem

Re: Firefox Plugin for GWT not downloading

2011-01-28 Thread George.H
I get the same problem when I go to that link. But somehow firefox auto-updated the plugin automatically. On Jan 28, 10:53 am, saket kumar wrote: > +1 > > > > On Fri, Jan 28, 2011 at 1:17 PM, hons wrote: > > I'm getting the same for firefox. > > In chrome instead the download of the plugin works

Invoking History.newItem() many times gets slow

2010-12-10 Thread George.H
Hi, I'm creating a simple app with GWT v2.1.0. I have a main menu page that navigate to other pages and each page has a back button. What I did was each time a user clicks on a button I invoke History.newItem("Page1"); RootPanel.get().clear(); RootPanel.get().add(new Page1()); I have made my Mai