Sidebar

how to create a channel without source node and detination node?

0 votes
430 views
asked Aug 1, 2018 by (330 points)
i am performing some task ,and that task is performing by mapping script itself so i don't want to configure source node and destination node,as i know to avoid destination path i can make it discard but in case of source it is mandetory to define source path so my question is how to handle this problem. or is there any way by which i can make dummy source which do not participate in task perform by qie.

1 Answer

+1 vote

You are correct about using the discard destination node.

On the source node you could point to a file folder that would not ever contain documents or file extension that would not ever exist like c:\temp\*.zzz

Or you could create your mapping function in the source node using a Script source node. Or even pass in a template inbound message using qie.addInboundMessage('template', 'template');

answered Aug 1, 2018 by michael-h-5027 (14,390 points)
commented Aug 2, 2018 by (330 points)
This is really helpful for me ..thanks a lot
...