}
public void testInOnlyExchange() throws Exception {
// START SNIPPET: inOnly
Destination destination = client.createDestination("service:http://servicemix.org/cheese/receiver");
InOnly exchange = destination.createInOnlyExchange();
NormalizedMessage message = exchange.getInMessage();
message.setProperty("name", "James");
message.setContent(new StreamSource(new StringReader("<hello>world</hello>")));