}
public void testInOutExchange() throws Exception {
// START SNIPPET: inOut
Destination destination = client.createDestination("service:http://servicemix.org/cheese/myService");
InOut exchange = destination.createInOutExchange();
NormalizedMessage request = exchange.getInMessage();
request.setProperty("name", "James");
request.setContent(new StreamSource(new StringReader("<hello>world</hello>")));