this.disp = rpcDispatcher;
}
public String outerMethod() {
log("**** outerMethod() received, calling innerMethod() on all members");
MethodCall call = new MethodCall("innerMethod", new Object[0], new Class[0]);
// RspList rspList = disp.callRemoteMethods(null, call, GroupRequest.GET_ALL, 5000);
RspList rspList = disp.callRemoteMethods(null, call, GroupRequest.GET_ALL, 0);
Vector results = rspList.getResults();
log("results of calling innerMethod():\n" + rspList);
StringBuffer sb = new StringBuffer("outerMethod[");