client-server application design
- by nelly
Hi, i want to create a client-server application using sockets on .net platform and being new to networking programming and i have a dilemma.
The client will send data to server often and also the server will notify clients often.
What is the best way to design it? should the server keep a thread to communicate with each client until it quits or just the clients send data to the server and it update the clients regularly(few seconds) or none of those?
Some help would be great. Thanks guys.