I am developing chat appliction using jsp and servlets. Can anyone tell me, what are the possiblities to notify the administrator (trigger events in administrator account), when the client hits the "Startchat " button?
|
|
DWR might offer a solution for use in webapp. for other solutions, you can search google for 'java' and 'comet' |
|||
|
|
|
Since it is a chat application can't you have the user send a message to the administrator when a client hits the Start chat button? |
|||
|
|
|
Just let the button fire a HTTP request to the server side which in turn invokes the
...or asynchronously with help of a shot of JavaScript/Ajax. jQuery is of great help here:
Finally in the
|
|||
|
|