Hi, My understanding is basically that you are trying to push data from the server to the client rather than having the client requesting data? In that case I tend to think of it using 4 basic strategies. These are the four we use.
1. WebSockets 2. Server-Sent Events 3. Long polling 4. Periodic Polling I had a poke around and found a good stack overflow answer to this (See [1]_ We faced the same issues and ended up putting together a couple of libraries to help with in GWT. * websockets: https://github.com/realityforge/gwt-websockets * Server-sent Events: https://github.com/realityforge/gwt-eventsource * Polling: https://github.com/realityforge/gwt-webpoller (Warning this API is not yet at 1.0 status) HTH [1] http://stackoverflow.com/questions/11077857/what-are-long-polling-websockets-server-sent-events-sse-and-comet On Sat, Mar 15, 2014 at 3:18 AM, Jeremy Kittel <[email protected]> wrote: > Hi, > > I'm struggling to find the best solution to send server logs to client side. > I've went down the path of using WebSockets but that won't work in my > current project. Does anyone have any suggestions? > > Let me know if this is to sparse of a question and more detail is needed. > > Thanks, > > Jeremy Kittel > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-web-toolkit. > For more options, visit https://groups.google.com/d/optout. -- Cheers, Peter Donald -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
