256257258259260261262263264
throw new RuntimeException(e); } } protected void invoke(InvocationChain chain, Object[] args) { Message msg = new MessageImpl(); msg.setBody(args); chain.getHeadInvoker().invoke(msg); }
41424344454647
public Message invoke(Message requestMsg) { invoke((Object[])requestMsg.getBody()); // DWR references can not return anything return new MessageImpl(); }