How to Create an Invoke Activity
To create an invoke activity:
-
Return to the MasterProcess master process.
-
In the Components window, expand BPEL Constructs.
-
Drag an Invoke activity into your BPEL process service component.
-
Double-click the Invoke activity.
-
Select the DetailProcess BPEL process you created in Step 1 as the partner link.
-
Select the Invoke as Detail check box.
-
Complete all remaining fields in the Invoke dialog, and click OK.
-
In the designer, click Source. The BPEL file appears as follows:
<invoke name="MyInvoke" partnerLink="DetailProcess" portType="dp:DetailProcess" operation="initiate" inputVariable="detail_input" bpelx:invokeAsDetail name="true"/>
This attribute creates the partner process (
DetailProcess
) as a detail instance. -
If this is an environment in which one master process is interacting with multiple detail processes, perform the following tasks:
-
Specify the
bpelx:detailLabel
attribute for correlating with the receive signal activity:<invoke name="MyInvoke" partnerLink="DetailProcess" portType="dp:DetailProcess" operation="initiate" inputVariable="detail_input"/> bpelx:detailLabel="detailProcessComplete0" <bpelx:invokeAsdetail name="true"/>
-
Specify the same label value of
detailProcessComplete0
in the receive signal activity of the master process:<bpelx:receiveSignal name="waitForNotifyFromDetailProcess0-1" label="detailProcessComplete0" from="details"/>
-
Repeat these steps as necessary for additional detail processes, ensuring that you specify a different label value.
-
-
From the File main menu, select Save All.
Master and detail coordination design is now complete.