responder = new SpecificResponder(Simple.class, new TestImpl());
server = createServer(responder);
server.start();
client = createTransceiver();
SpecificRequestor req = new SpecificRequestor(Simple.class, client);
addRpcPlugins(req);
proxy = SpecificRequestor.getClient(Simple.class, (SpecificRequestor)req);
monitor = new HandshakeMonitor();
responder.addRPCPlugin(monitor);