Networking in Java pls HELP
hello friends,
i'm tryinggroup chat kinda thing in Java.. i think i can do it using UDP sockets etc.. which has MultiCastSocket class...
but as UDP is not that reliable, i'm trying to do it using TCP .. but i'm not able to find such analogous classes.
in TCP, i've aServer class which will start the server , aSocketThread class which will start a thread which in turn create a socket each time a new client requests connection... and an ordinaryClient class
wat i want to do is, when any of the clients send a msg it should b multicasted to all the clients..
can anyone suggest how i should proceed..

