FileAuditor auditor = new FileAuditor();
auditor.setContainer(jbi);
auditor.setDirectory(DIRECTORY);
auditor.afterPropertiesSet();
InOnly inonly = sender.createInOnlyExchange(ReceiverComponent.SERVICE, null, null);
inonly.setInMessage(inonly.createMessage());
inonly.getInMessage().setContent(new StringSource("<hello>world</hello>"));
inonly.getInMessage().setProperty("from", Locale.getDefault().getCountry());
sender.send(inonly);