You're basically asking for server push, I'd look into either comet, server events, or websockets. Regardless none will be available (except maybe comet, haven't checked this) in GWT since there isn't a large base (IE) that supports those methods.
Also, you can use "real java codes", they're just compiled to javascript. You will always have to do some sort of setup to allow the server to access a client side method, otherwise the browser would be horrendously insecure. On Jul 14, 3:33 pm, _MOD_ <[email protected]> wrote: > Hi. I want to send string messages from my gwtserviceservlet to my > entrypoint directly. I mean without sending any request from > entrypoint to Servlet. > > Becouse i cant use real java codes in entrypoint. Therefore i want to > make something in myserviceservlet and then send the result as string > to my entrypoint. > > Is there a way to reach any method in entrypoint via serviceservlet? > Or entrypoint just can make request and recive these request's results? -- 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.
