Am I missing something or does ReflectionOutBinding not send
the
response back to the client?
the code being:
Method method = (Method)
inMessage.getProperty("method");
Object []args = (Object[])
inMessage.getProperty("args");
try {
method.invoke(target, args);
done(messageExchange);
} catch (IllegalArgumentException e) {
throw new MessagingException(e);
} catch (IllegalAccessException e) {
throw new MessagingException(e);
} catch (InvocationTargetException e) {
throw new MessagingException(e);
}
i.e. shouldn't it do something with
method.invoke(target,args)'s return?
cheers
|