GenericCommand cmd = new GenericCommand(H_KILLAGENT, AgentManagementSlice.NAME, null);
cmd.addParam(agentID);
cmd.setPrincipal(sourceCmd.getPrincipal());
cmd.setCredentials(sourceCmd.getCredentials());
Node n = getNode();
Object result = n.accept(cmd);
if((result != null) && (result instanceof Throwable)) {
if(result instanceof IMTPException) {
throw (IMTPException)result;
}
else if(result instanceof NotFoundException) {