Our Components are like the following :
from("jbi:service:http://icar.unibas.it/FreESBee/CamelTest1")
.process(new ProcessorEnricher())
.to("jbi:service:http://icar.unibas.it/FreESBee/CamelTest2?mep=in-out");
private class ProcessorEnricher implements Processor{
public void process(Exchange exchange) throws Exception {
logger.info("Camel N");
}
}
If the message through 4 components, we see correctly the log on screen :
Camel 1
Camel 2
Camel 3
Camel 4
Else if we have 5 components, we see the first 4 log message, but not the
fifth. After a moment receive the exception "Exchange Not Found"
Can you explain the "with more than four it doesn't work" sentence ?
What happens ?
--
View this message in context:
http://www.nabble.com/Problems-with-camel-comunication-tf4482226s12049.html#a12798862
Sent from the ServiceMix - User mailing list archive at Nabble.com.