Thanks - that did the trick ...
gnodet wrote:
>
> Did you set the correlation id before sending the response ?
>
> if (message.getJMSReplyTo() != null) {
> Message reply = session.createTextMessage("<reply>" +
> message.getJMSMessageID() + "</reply>");
> reply.setJMSCorrelationID(message.getJMSCorrelationID());
> replyProducer.send(message.getJMSReplyTo(), reply);
> }
>
> AFAIK, the correlation id is not set by default, so you have to
> explicitely
> set it to the correct value so that servicemix can correlate the response
> and the request.
> ...
>
> --
> Cheers,
> Guillaume Nodet
> ------------------------
> Blog: http://gnodet.blogspot.com/
>
>
--
View this message in context:
http://www.nabble.com/Correlation-problem-with-servicemix-jms-provider-tp15008454s12049p15008858.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.