535455565758596061
logger.info(new SourceTransformer().toString(me.getOutMessage().getContent())); } } public void testProxy() throws Exception { Echo echo = (Echo) context.getBean("proxy"); String result = echo.echo("world"); assertEquals("world", result); }
5960616263646566
String result = echo.echo("world"); assertEquals("world", result); } public void testProxyOneWay() throws Exception { Echo echo = (Echo) context.getBean("proxy"); echo.oneWay("world"); }