@JamilAhmed Can you help this? We aren’t able to receive the reply from Orchestrator.
We tried the below sample shared in github.
// Build the topics
outputTopic = input.getHeaders().get(MEDIATOR_REPLYTO_DESTINATION_KEY).toString();
Message output = MessageBuilder.withPayload(jsonMessageOut.toString())
.setHeader(SOL_CORRELATION_ID_KEY, input.getHeaders().getOrDefault(MEDIATOR_CORRELATION_ID_KEY, “”))
.setHeader(BinderHeaders.TARGET_DESTINATION, outputTopic)
.build();