Hi,
I'm trying to write a invocation of external ws service in jbi (apache
servicemix) using camel.
The RouteBuilder.java :
from("timer://tutorial?fixedRate=true&delay=4000&period=10000")
.setBody(constant(msg))
.to("jbi:service:http://externalservice.com/Annotation?operation={http://externalservice.com/ws/types}annotateString&mep=in-out")
.to("log:my-test-ws-execution");
and a msg is a proper soap message (works in soapui)
in logs I can find :
"Could not find route for exchange:"
Am I doing it wrong with the camel part ?
Fuse ESB 3.6 with camel-core 2.7.1