Sidebar

How do I return a Ack from a Destination node back to the source system.

0 votes
1.2K views
asked Jun 23, 2015 by brandon-w-8204 (33,270 points)
I have a destination that is returning an ack message that I need to send back to the system that called my source node. How can I get that ack i get from my destination back to the calling system.

1 Answer

+1 vote

There is 2 things you have to do to send this back.

1. Setup the source to be from Mapping or Destination node

2. Setup the ack script on the Destination to go to post the response: Here is a sample script. The line that returns the ack is "qie.postMessageResponse(response);"

if (response === null || response.length === 0) {

answered Jun 23, 2015 by brandon-w-8204 (33,270 points)
edited Jun 24, 2015 by brandon-w-8204
...