i want to implement a multithreaded server having atleast 3 client threads.. i m quite new to server programming..
can u guys suggest me how to proceed
plz help.. its urgnt
This networking Java tutorial describes networking capabilities of the Java platform, working with URLs, sockets, datagrams, and cookies
I would recommend implementing a none threaded version first (server will only accept a single client) then when working extended it to use a seperate thread for each client
Comment