How to Route a Message to a New or Existing Instance when Using Correlation Sets
For a BPEL process using correlation sets, the correct routing is performed. The message can be either of the following:
-
An invoke message creating a new instance
-
A callback message continuing an existing instance
Figure 9-19 shows entry and midprocess receive activities using the same operation (process
).
Figure 9-19 Routing a New Message to a New or Existing Instance

Description of "Figure 9-19 Routing a New Message to a New or Existing Instance"
The following provides an example of the entry and midprocess receive activities using the same operation (process
).
<receive name="receiveInput" partnerLink="client" portType="client:BPELProcess1" operation="process" variable="inputVariable" createInstance="yes"> <correlations> <correlation initiate="yes" set="CorrelationSet_1"/> </correlations> </receive> <!-- some business logic --> <while name="While_1" condition=*loop for 3 iterations*> <sequence name="Sequence_1"> <receive name="Continue_Receive" partnerLink="client" portType="client:BPELProcess1" operation="process" variable="inputVariable" createInstance="no"> <correlations> <correlation initiate="no" set="CorrelationSet_1"/> </correlations> </receive> <!-- some business logic --> </sequence> </while>
In the initial scenario in the preceding example, the following actions occur in BPEL process P1:
-
A partner provides four messages (message 1, message 2, message 3, and message 4) for the same partner (correlation ID
101
). -
Message 1 creates a new instance of BPEL process P1. This message is marked as an invoke message.
-
Messages 2, 3, and 4 are received using the
Continue_Receive
activity. These messages are marked as callback messages. -
The instance closes because three iterations of the
while
loop are expected.
Assume now that additional messages are routed, which can potentially cause race conditions to occur. Table 9-13 provides details.
Table 9-13 Message Delivery Scenarios
Scenario | Description | Marked as Invoke Message | Marked as Callback Message |
---|---|---|---|
1 |
Assume the partner now provides message 5 for the same correlation ID ( |
|
|
2 |
If messages 4 and 5 are received within a small time window, it is possible that message 4 is closing the instance BPEL process P1 and message 5 is routed as a callback to that instance. This scenario can cause a race condition. For example:
|
|
|
3 |
This is similar to scenario 2. However, in this case, messages 7, 8, and 9 are not received. For example:
There are several options for message recovery.
|
|
|