Hi
We have a parent orchestration where we call a child orchestration. However, once the child orchestration has completed, we would like to return a message to the parent orchestration.
What is the best / most standard way to do this?
- A) Just publish the message from the child orchestration to the messagebox and correlate this in the parent with a receive
- B) Can we use a message as a C# style ref / out parameter when passing it from the Parent to Child orchestration?
- Other?
Thanks
Stuart