I don't completely understand what you're asking, but if you'd like to implement a text chat then you'll probably want to look into something called comet. It isn't a library (I don't think) but just a technique for holding open a socket so that your clients can receive immediate responses to chat message.
On the server you'll want to implement a queue and the clients will attach to this queue (via socket) and get the new message when available. If you have other questions you'll have to be more specific. Good luck! On Mar 8, 9:11 am, klyes <[email protected]> wrote: > Hello, > > I would like create a basic t'chat with GWT - RPC. I don't understand > how the users receives the message. Actually in my application a > message is just visible for the user who send this message. The other > users don't see this message. I test to add the messages in a list, > but I have the same problem. Do I need to use something else ? > > Thanks -- 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.
