5.5. Writing Request/Response Applications in C++

5.5. Writing Request/Response Applications in C++

In the request/response examples, we write a server that accepts strings from clients and converts them to upper case, sending the result back to the requesting client. This example consists of two programs.

Note

Start server before you start client, since the client only works if there is a running server.

Insert the code from each example into the skeleton at Section 5.1, “Creating and Closing Sessions”.