Hi Claus,
Could you explain a little further? I have something like following, but
after I process the return the response is not returned to the producer even
with setting ExchangePattern to InOut. Thanks!
from("jetty:http://localhost:8888/stockquote?matchOnUriPrefix=true")
.streamCaching()
.process(new Processor() {
@Override
public void process(final Exchange exchange) throws Exception {
........
}
})
.to("http://www.webservicex.net/stockquote.asmx?bridgeEndpoint=true&throwExcpetionOnFailure=false")
.process(new Processor() {
@Override
public void process(final Exchange exchange) throws Exception {
.........
exchange.setPattern(ExchangePattern.InOut);
}
});
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Request-Reply-pattern-tp5456573p5503686.html
Sent from the Camel - Users mailing list archive at Nabble.com.