public void testSendingInOutToDynamicEndpointForExchangeProcessorBeanWithFooOperation() throws Exception {
// now lets make a request on this endpoint
DefaultServiceMixClient client = new DefaultServiceMixClient(jbi);
DocumentFragment epr = URIResolver.createWSAEPR("bean:listenerBean");
ServiceEndpoint se = client.getContext().resolveEndpointReference(epr);
assertNotNull("We should find a service endpoint!", se);
InOut exchange = client.createInOutExchange();
exchange.setEndpoint(se);
exchange.getInMessage().setContent(new StringSource("<hello>world</hello>"));