Chaining Handlers on the Client
To chain handlers on the client, simply add them to the <serviceName>Client.cpp file, for example:
 
MyProxy proxy = MyProxy::make(location);
proxy.addTransportHandler(new StringReverseHandler);
proxy.addRequestHandler(new AuthenticationHandler);
The order in which client-side handlers are processed is important when choosing the types of handlers to use. Please see Add the Handlers to the Proxy.