Can a server socket send messages like a normal Socket?
At the moment I have a client (of type Socket) which can send / receive messages by writing to / reading from a stream.
I have a server which, when a client connects, starts a new
thread which then deals with communication to / from that client.
I want the server to be able to send urgent messages to ALL clients that are currently logged on but have no idea how to do this! Any suggestions?
J