http://winterdom.com/
I have a parallel Action with multiple recieve shapes for msgs I am subscribing to. i need to get all 4 messages within an hour or send an error message.
So I put listen shapes within the parallel convoy with delay shapes set to an hour delay.
Do you know how to accomplish this otherwise?
Thank You.
Have a receive shape on the top of the orchestration that has message type of XMLDocument and set this to activate. this will now accept XML message of any kind and have your listen shape beneth this.
Hope that helps.
Cheers!!
Saurabh
Hi,
Delay shapes pause the execution of your orchestration. I would suggest setting each delay shape to a minute or two (not an hour) if your orchestration will be receiving all 4 msgs within a reasonable timeframe. When all 4 msgs are received, set a flag that will break out of your loop shape. You should also have a counter to track how much time has elapsed (when you are looping through to listen on all 4 msgs), when that counter goes over 1 hour, set a condition to send out an error message and break out of the loop.
Good luck!
Daniel.
"Google skills are more important than your coding skills."