Connecting with a client needs some simple steps:
TcpIpConnection conn ("localhost", 32000);
HttpProtocol prot(&conn);
Requester client(&prot);
MethodCall testcall ("testcall");
testcall.addParam(Integer(123));
MethodResponse resp = client.call(testcall);
cout << "call result: \n"
<< resp.getXml(0);