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