cmd.addParam(msg.getPayload());
cmd.addParam(new Boolean(msg.hasForeignReceiver()));
cmd.addParam(msg.getTraceID());
cmd.addParam(receiver);
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) {