inMessage.setContent(new StringSource("<hello address='London'>world</hello>"));
client.sendSync(exchange);
assertExchangeWorked(exchange);
PlainBean bean = (PlainBean) getBean("plainBean");
Object property = bean.getPropertyParameter();
Object body = bean.getBody();
log.info("Bean's methodWithPropertyParameterAndContent() method has been with property: " + property + " and body: " + body);
assertEquals("property parameter", "James", property);
// TODO need to add a marshalling example
//assertEquals("content parameter", "London", body);