163164165166167168169170171172173
callee.setTaskName(getTaskName()); callee.setLocation(location); callee.setInheritAll(true); callee.init(); callee.setTarget(this.testTarget); callee.execute(); } /** * Sets the target to call to start the server. *
257258259260261262263264265266267
callee.setInheritAll(true); callee.init(); callee.setTarget(this.startTarget); callee.execute(); // Should never reach this point as the target is blocking, unless the // server is stopped. }
167168169170171172173174175176
ref.setRefId(rc.getRefId()); ref.setToRefid(rc.getToRefId()); callTarget.addReference(ref); } callTarget.execute(); return false; } }
221222223224225226227228229230231
callee.setOwningTarget(target); callee.setTaskName(getTaskName()); callee.setLocation(location); callee.init(); callee.setTarget(taskName); callee.execute(); } /** * Make a socket to the url, and send the given string */