Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
3.1.1
-
None
Description
It needs modify, in the TransformComponentSupport class, the method onMessageExchange as below
if (isInAndOut(exchange))
{ out = exchange.createMessage(); } else {
outExchange = getExchangeFactory().createInOnlyExchange();
//-----------------------------------------------------------------------------------
outExchange.setProperty(JbiConstants.SENDER_ENDPOINT, getService() + ":" + getEndpoint());
String processCorrelationId = (String)exchange.getProperty(JbiConstants.CORRELATION_ID);
if (processCorrelationId != null)
//-----------------------------------------------------------------------------------
out = outExchange.createMessage();
}