Hi,
No that didnt make any difference.
The mesages are going where expected just the notify condition never fire.
I'm using camel 2.8.0
The 'prod' route builder I'm testing who's configure was over-ridden to read
inputs from files is:
public void configure() {
errorHandler(
deadLetterChannel("direct:error").useOriginalMessage());
from("direct:error")
.log("direct:error")
.to("log:com?level=ERROR&showAll=true")
.to("{{url.dead-letter}}");
from("{{url.tradebus-bond-trades}}")
.unmarshal(jaxb)
.to("bean:bondTradeEventProcessor")
.to("direct:tradebus-trades");
from("{{url.tradebus-future-trades}}")
.unmarshal(jaxb)
.to("bean:futureTradeEventProcessor")
.to("direct:tradebus-trades");
from("direct:tradebus-trades")
.split().body()
.removeHeaders(".*")
.to("{{url.radial-trades}}")
.to("log:com?level=INFO&showBody=true&showHeaders=true");
--
View this message in context:
http://camel.465427.n5.nabble.com/NotifyBuilder-condition-fails-to-match-on-an-out-activemq-endpoint-tp4689038p4689722.html
Sent from the Camel - Users mailing list archive at Nabble.com.