各位好,
關於我有一orchestration有使用Parallel Actions Shape,其中有五個分枝,裡面是用expression shape來呼叫我的 .NET component 去呼叫web service並記錄開始及結束時間,如下所示
paralle actions shape
| | ............... |
expressionA expressionB ............... expressionE
(1.在SQL DB中記錄開始時間 (1.在SQL DB中記錄開始時間 ............... (1.在SQL DB中記錄開始時間
2.call web service 2.call web service ............... 2.call web service
3.在SQL DB中記錄結束時間) 3.在SQL DB中記錄結束時間) ............... 3.在SQL DB中記錄結束時間)
執行結果:
expressionA 開始時間 2010-10-12 16:50:31.390 結束時間 2010-10-12 16:50:31.403
expressionB 開始時間 2010-10-12 16:50:31.463 結束時間 2010-10-12 16:50:31.467
expressionC 開始時間 2010-10-12 16:50:31.503 結束時間 2010-10-12 16:50:31.507
expressionD 開始時間 2010-10-12 16:50:31.543 結束時間 2010-10-12 16:50:31.550
expressionE 開始時間 2010-10-12 16:50:31.583 結束時間 2010-10-12 16:50:31.587
由以上的結果看起來是循序執行的,我想要的結果是同步處理,也就是產生出來的開始時間應該都是相同的,
請問我要如何做到?
謝謝