Replies: 3 comments
-
Can you provide more details on that use case with some message examples? |
Beta Was this translation helpful? Give feedback.
-
You cannot route a new message directly to a destination. It must process through the channel source first. |
Beta Was this translation helpful? Give feedback.
-
The source connector needs to first receive the message as a file reader, TCP listener, HTTP listener etc. While in say the first destination, you can retrieve the original message using the function connectorMessage.getRawData() then do the necessary transformations then finally have the message you wish to send packaged in a channel map then retrieve that channel map variable at the subsequent destination. |
Beta Was this translation helpful? Give feedback.
-
Is it possible, in a javascript writer destination, to send an HL7 message to another destination in the same channel? I have a message that contains multiple MRNs for the same patient. I need to split these into separate messages and forward them out to another channel.
I can do the splitting\message generation in the javascript writer but would like to just have another destination in the same channel that sends the message out vs having to send it to a 2nd channel that then sends it out.
Beta Was this translation helpful? Give feedback.
All reactions