chat messenger
Hi,
I want to create a small chat messenger within my small organization of 10 ppl.
I know it can be done via networking but how to proceed on this i dont know.
Please throw me some ideas on that
1. What is the logic behind chat messaging. How Java networking helps in that case?
2. How to start with the creation of tool?
Regards
Aman
# 1
A chat client/server is fairly simple. Java networking helps because Java allows you to manage threads and sockets fairly easily.
You may want to read http://java.sun.com/docs/books/tutorial/networking/sockets/index.html for more information. For a chat server, you will probably want to create multiple threads since you will have many clients.
RATiXa at 2007-7-12 19:25:51 >
