I guess that he wants a POLL technique, Server Push is not supported over GAE and cloud hosting providers. For POLL, you just need to have a timer that calls back the remote service every 5 seconds and update your views accordingly.
Just make the timer timer.scheduleRepeat(5000); regards, ruds On Wed, Apr 7, 2010 at 7:53 AM, Qian Qiao <[email protected]> wrote: > On Wed, Apr 7, 2010 at 01:46, Durgesh Kumar Mishra > <[email protected]> wrote: > > Hi > > I am trying to refresh a gwt page in every 5 secs where data is keep > on > > changing ...so i have to show updated data in every 5 secs. Can anybody > tell > > me the solution how do i implement it? > > > > I am using simple gwt1.5 and for baceknd part hibernate for retrieving > data > > from the database. > > Calling a service i usually populate the form. > > > > If anybody knows the solution Please reply asap. It is urgent > requirement. > > > > Thanks > > Durgesh > > This is an old doc for server push: > http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ > > You should also google for gwt comet for existing implementations. > > HTH. > > Joe > > -- > Two things that are infinite, the universe and my stupidity, and I'm > not sure about the universe. > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. 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.
