Re: Chat with GWT

2010-09-23 Thread danigb
There's a library (emite.googlecode.com) that allows to send and receive messages from a xmpp server using a proxy using the BOSH technique (http://xmpp.org/extensions/xep-0124.html) Maybe it helps Bests Dani On Sep 22, 9:15 am, Thomas Martin martin.thomas...@gmail.com wrote: Can you give the

Re: Chat with GWT

2010-09-23 Thread lineman78
May I suggest ICEpush for chat app, here is a GWT chat demo: http://demos.icepush.org/icechat-gwt/ On Sep 23, 7:26 am, danigb dan...@gmail.com wrote: There's a library (emite.googlecode.com) that allows to send and receive messages from a xmpp server using a proxy using the BOSH technique

Re: Chat with GWT

2010-09-22 Thread Stefan Bachert
Hi, you can't call getMessage() from the servlet. You seems to have a weird understanding of client-server communication. Any class you have showed us are client classes (browser). No idea how you call anything from servlet. You may use GWT-RPC for communication (and you should have a look on

RE: Chat with GWT

2010-09-22 Thread Victor Machado
Thank you for the answer. What is COMET? How can i use it? Hi, you can't call getMessage() from the servlet. You seems to have a weird understanding of client-server communication. Any class you have showed us are client classes (browser). No idea how you call anything from servlet.

Re: Chat with GWT

2010-09-22 Thread Thomas Martin
Can you give the error you got ? Generally, it is better to implements IsSerializable, which is the serialization interface of GWT, rather than Serializable, which is the classic Java serialization interface, which should work but causes sometimes some issues. -- You received this message

Chat with GWT

2010-09-21 Thread Victor Machado
Hello, im new in programming with GWT and im trying to make a Chat application. I have a class Receiver, responsible to get the messages from the server and show them in a TextArea. It's something like this: class ChatEntryPoint implements EntryPoint{ Receiver r; final TextArea ta;