Protocol protocol;
public RecursingResponder(Protocol local, RPCPlugin plugin)
throws Exception {
super(local);
transC = new HttpTransceiver(
new URL("http://localhost:21006"));
transD = new HttpTransceiver(
new URL("http://localhost:21007"));
reqC = new GenericRequestor(local, transC);
reqC.addRPCPlugin(plugin);
reqD = new GenericRequestor(local, transD);
reqD.addRPCPlugin(plugin);