Finding Frodo
Member
Hi there,
here is what I'm basically trying to achieve:
It receives
My first idea was: is it not returned, because the Return Custom Response to the Source is not the last action in the workflow? This might be the case when route 1 and 2 are called (workflow history shows that all routes are checked, even after one route's condition was true and content is executed). But when I ensure that route 3 is executed and therefor the Return is definitely the last action, it also doesn't return anything.
So is Return Custom Response to the Source generally not working within a router?
One question aside: How exactly does a Router behave?
here is what I'm basically trying to achieve:
- Outer workflow
- Calling inner workflow via Pabbly Data Forwarder: Forward Custom Data
- Inner workflow: receiving data
- doing stuff
- using a Pabbly Router
- Route 1: returning data to outer workflow via Pabbly Data Forwarder: Return Custom Response to the Source
- Route 2: doing stuff and returning data to outer workflow
- Route 3: doing even more stuff and returning data to outer workflow
- Receiving returned data from inner workflow
- Calling inner workflow via Pabbly Data Forwarder: Forward Custom Data
It receives
{ Status: success, Message: Successfully Forwarded }
– but I'm missing the additional data, which should be returned by one of the routes.My first idea was: is it not returned, because the Return Custom Response to the Source is not the last action in the workflow? This might be the case when route 1 and 2 are called (workflow history shows that all routes are checked, even after one route's condition was true and content is executed). But when I ensure that route 3 is executed and therefor the Return is definitely the last action, it also doesn't return anything.
So is Return Custom Response to the Source generally not working within a router?
One question aside: How exactly does a Router behave?
- like
if { } else if { } else if { }
- like
if { } if { } if { }