I have a server and some clients (about 50) on the intranet. Clients send short (about 40 characters) string data to the server, and the server responds with a similar string. For each client, up to (but not constantly) up to 2-3 requests per second. The server must serialize requests to receive response strings.
The system should have as little impact on the network as possible (i.e. the server can run something like a web server already). It should be as simple as possible to install and administer.
What are the possibilities to achieve this with Delphi (Client: D7, Server before D2010)?
source share