String injectionPointName = method.getName();
Endpoint endpoint = getEndpointInjection(endpointUri, endpointName, injectionPointName, true);
if (endpoint != null) {
try {
Processor processor = createConsumerProcessor(bean, method, endpoint);
Consumer consumer = endpoint.createConsumer(processor);
if (LOG.isDebugEnabled()) {
LOG.debug("Created processor: " + processor + " for consumer: " + consumer);
}
startService(consumer);
} catch (Exception e) {