MessagesGuide

From RunaWFE
Revision as of 06:37, 23 November 2020 by WikiSysop (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Process communication

RunaWFE Free Workflow System (BPMS) Version 4.5.0

© 2003 - 2015, Consulting Group Runa

© 2015 - 2024, "Process Technologies" Ltd, this document is available under GNU FDL license. RunaWFE Free is an open source system distributed under a LGPL license (http://www.gnu.org/licenses/lgpl.html).

Process communication implementation in RunaWFE

General

Process communication in RunaWFE is implemented via messages. According to this concept business process instance can send a message from one business process node to the other business process instance node or to the other node of the same business process instance. The elements "Send message" and "Receive message" were added to graphic elements palette for sending and receiving messages.

Mes elements en.png


JMS technology is used for sending and receiving messages. The sender node sends a message right after the control flow reaches it, then the control shifts to the next node. The receiver node awaits for the message to come and control flow can stay in this node indefinitely long.

Message parameters

A message contains the following information:

  • receiver identifier
  • the business process variables values that have to be sent

Sometimes one messages can be processed by several receivers.

A message receiver can be identified via the following ways:

  • by business process name (processDefinitionName)
  • by business process node name (processNodeName)
  • by business process instance identifier (processInstanceId)

To set these parameters you can use:

  • business process instance variables, e.g. processDefinitionName=${proc_name}, where proc_name is a variable that contains process name.
  • constant value, e.g. processNodeName = SimpleProc, where SimpleProc is a process node name
  • preset values: current process definition name ( ${currentDefinitionName} ), current node name ( ${currentNodeName} ), current process instance identifier ( ${currentInstanceId} )

Message data structure allows to set the correspondence between sender and receiver variables on any of the sides (or on both sides).

Below you can see an example of message receiver configuration:

Mes ex en.png

Message selector is set to current process name. The following correspondence between variables is set: Str2 process variable will be set to message variable Str1 value, also id_proc will be set to id_inst value.

If business process name is used to identify message receiver and currently there's no instances of that process running the message waits till the first instance is available and delivers its parameters values to it in "receive message" node.

If there are several instances of the given process running simultaneously the message is delivered to all of them.

A simple example of process communication

Processes scenario

Simple processes that illustrate process communication in RunaWFE (implemented with the help of messages) are reviewed below.

SimpleMessageSend sends data typed by user to SimpleMessageReceive process, receiver process is selected by process name.

SimpleMessageReceive receives data and shows it on form.

Creating process graph

Create a new project in Developer Studio, then left-click on "new process" command. In the shown dialog type “SimpleMessageSend” as process name. Use JPDL for this process.

Mes simple en1 1.png

Likewise create SimpleMessageReceive process.

Make a double-click on the «SimpleMessageSend» string. You will see a business process diagram window. Draw the following business process graph by selecting corresponding palette elements:

Mes simple en2.png

The following elements are used here: “Start”, “End”, “Action node” and “Send message” node. To set the element name select the graph element by clicking on it, then click on the element again.

Draw the following graph for SendMessageReceive process:

Mes simple en3.png

Unlike in SimpleMessageSend, here the element “Receive message” is used to receive data.

Swimlanes

Swimlanes description

The following swimlanes are used in created processes:

  • manager is used in SimpleMessageSend, and will be initialized by the user who starts the process.
  • staff is used in SimpleMessageReceive, it has initializer and will be initialized by the member of the staff group who starts the process:

Mes simple en4.png

Variables creation

Description and initialization of variables

“msg_send” variable of String is used in SimpleMessageSend and meant to be sent in a message. The variable is initialized by the value that is typed in by the user in "Input data" node, then it is delivered to SimpleMessageReceiver process via message communication.

“msg_rec” variable of String is used in SimpleMessageReceive and its value is set in the message from SimpleMessageSend

Variable creation

Click on the "Variables" tab. Click on the "Create" button

Mes simple en5.png

Type the variable name – msg_send, and choose String as variable format.

Mes simple en6 1.png

Likewise create msg_rec variable in SimpleMessageReceive process

Forms creation

Using form constructor to create forms

Right-click on the "Input data" node in SimpleMessageSend process graph and choose command "Form" > "Create Form":

Mes simple en7.png

In the new form put Input Variable tag for msg_send variable:


Mes simple en8 1.png

Likewise create form for “Output data" node in SimpleMessageReceive process. Place ftl tag for "DisplayVariable" to show the msg_rec value:

Mes simple en9 1.png

Validation

Set msg_send variable validation in SimpleMessageSend by choosing "Required field" in the validation options. In order to do so right-click on the data input node and choose "Form > Form variable validation":

Mes simple en10.png

In the shown form there is msg_send variable. Choose this variable, set the "Required field" validator in the Validators list and type the error message text:

Mes simple en11.png

Process communication configuration

Sender configuration

To configure message sending in SimpleMessageSend process right-click on "Send data" node and choose "Send message" option:

Mes simple en12.png

On the shown form it is necessary to add routing properties and data that will be sent:

Mes simple en13.png

We will send message by process name, click on the corresponding button and type the process name (SimpleMessageReceive)

Mes simple en14.png

Then set the variables that will be sent in the message. Click add button in the bottom of the form and choose msg_send variable. It is possible to set a name (alias) here that will be used for the chosen variable in the message:

Mes simple en15.png

We have the following configurations:

Mes simple en16.png

Receiver configuration

To configure message receiving in SimpleMessageReceive process right-click on "Receive data" and choose "receive message":

Mes simple en17.png

On the shown form it is necessary to add routing properties and data correspondence for message receiving. We will use receiving by the process name. Click on the corresponding button and there will be the following set: processDefinitionName = ${currentDefinitionName}

Mes simple en18.png

where currentDefinitionName is the current process name

It is also necessary to add variables that are received in the message, press add button in the bottom of the form and choose variable name msg_rec

Mes simple en19.png

Then in the field of the message variable name type msg_send

Mes simple en20.png

So we set the correspondence between msg_send variable from SimpleMessageSend process that is sent in the message and msg_rec variable in SimpleMessageReceive process.

We have the following configurations:

Mes simple en21.png

Creating .par archive file and deploying it to the system

The steps are completely similar for any other business process .par file creation and deployment. Use "HelloWorldProcess" (https://runawfe.org/doc/Process-editor_User_guide#Process_definition_archive_creation) as example.

It is necessary to set permissions for given processes after their deployment:

For SimpleMessageSend add manager group to permission owners

Mes simple en22.png

For SimpleMessageReceive add staff group:

Mes simple en23.png

Process execution

A short description of process communication

SimpleMessageSend and SimpleMessageReceive show a simple example of process communication via messages.

User starts SimpleMessageSend process instance, types message text, then the message is sent to all SimpleMessageReceive instances that are currently running. SimpleMessageSend process ends.

User that is a member of staff group starts SimpleMessageReceive process instance, then the control flow stops on "Receive data" node and waits for data.

The message is delivered to all SimpleMessageReceive instances that wait for it, the received variable value (message text) is shown on the form, and then the SimpleMessageReceive instances also end.

Let us consider two examples of the developed communication


One receiver

In order to start SimpleMessageReceive instance it is necessary to log in as staff group member and click on this process name in the Start process list:

Mes simple en24.png

The process instance will start and the control flow will stop on "Receive data" node waiting for the message.


Mes simple en25.png

Then a member of manager group(say julius) starts SimpleMessageSend instance and types the message text:

Mes simple en26.png

SimpleMessageSend instance ends.

SimpleMessageReceive instance receives the message and control flow goes to the "Output data" node,

Mes simple en27.png

user attila can see the sent message on the form:

Mes simple en28.png

The history of the described process is shown below:

Mes simple en29.png

Mes simple en30.png


Several receivers

The second considered example is sending the message to several SimpleMessageReceive instances simultaneously

Start SimpleMessageReceive instances using all users from staff group:

  • Attila
  • Gaiua
  • Marcus

Mes simple en31.png

Start SimpleMessageSend instance using user from manager group, and type the message “Hello World!!!” like in the first example.

Mes simple en32.png


Then the message will be delivered to all SimpleMessageReceive instances that wait for it.

Execution history:


Mes simple en33.png

Mes simple en34.png

Mes simple en35.png

Mes simple en36.png

Mes simple en37.png

An example of complex process communication via messages

Processes scenario

MessageQuery sends a message to MessageResponse using "by process name" routing. Message data includes user input string and MessageQuery instance id.

MessageResponse receives data, user changes the received string value, then the message is sent back to MessageQuery using "by process id" routing

Creating graph

Create a new project, then left-click "New process" command. Type "MessageQuery" as new process name. We'll use BPMN for this process.

Mes query en1 1.png

Likewise create MessageResponse process.

Double-click the "MessageQuery" in the processes list. You will see a process diagram tab. Draw the following process graph by choosing palette elements:

Mes query en2 1.png

The following elements are used: "Start", "End", "Activity node", "Send message"/"Receive message", and also "Script task".

To change element name select element by clicking on it, then click once again.

Likewise draw MessageResponse:

Mes query en3.png

As you can see on the process diagrams both processes use elements of sending and receiving the message unlike in previous example with SimpleMessage.

Swimlanes

Swimlane descriptions

The following swimlanes are used in created processes:

  • manager is used in MessageQuery and will be initialized by the user who starts the process.
  • staff is used in MessageResponse and will be initialized by the user who starts the process.

Variables creation

Variables description

The following variables are used in MessageQuery process:

  • str_query of String is input by user in “Input data” node and is sent to MessageResponse instances.
  • id_query of String contains MessageQuery instance id and is also sent in message. This variable must be initialized in script task "get instance id" with the help of ExecuteFormulaActionHandler.

The following variables are used in MessageResponse:

  • str_response of String that is received from message, processed and is sent back to MessageQuery instance
  • id_query of String contains MessageQuery instance id. The value comes from message and is required to determine the receiver for the next message. It is used in routing properties.

Variable creation

Click on "Variables" tag. Click on "Create" button, select str_query and choose String.

Mes query en4 1.png

Likewise create str_response in MessageResponse process

Also it's necessary to create id_query variables in corresponding processes:

Mes query en5 1.png

Mes query en6 1.png

Creating handler

In MessageQuery process it's necessary to create ExecuteFormulaActionHandler. The id_query variable is initialized with instance id in this handler. Select "Script task" node


Mes query en7 1.png

Then choose ExecuteFormulaActionHandler handler and set the configuration:


Mes query en8.png

where get_instance_id() is a function that returns instance id

Forms creation

Creating forms via forms constructor

Right-click on "Input data" node of MessageQuery process graph and choose "Form > Create":

Mes query en9 1.png

An empty form will appear.

Add a new Input Variable tag for str_query variable:


Mes query en10 1.png

Likewise create form for "Input data" node in MessageResponse process. Use tag InputVariable for str_response editing:

It's also necessary to create a form to show the value of the variable after process communication.

Right-click on "Output data" node of MessageQuery process and choose «Form» > «Create form», then place ftl tag DisplayVariable for variable output on the created empty form for str_query value.

Process communication configuration

Sender configuration in MessageQuery process

Right-click on "Send message" node and select "send message" option:

Mes query en13 1.png

In properties of route message set the following:

Mes query en14.png

So we send id_query and str_query variables to MessageResponse process ("by process name")

Receiver configurations in MessageResponse process

Right-click "Receive message" node and select "Receive message" option:

Mes query en15.png

In properties of route message set the following:

Mes query en16.png

So we receive id_query value from the message and save it to id_query variable of MessageResponse process, while str_query goes into str_response variable.

Sender configuration in MessageResponse process

After receiving and processing the message MessageResponse process returns the data to MessageQuery instance. The following configurations are used for it:

Mes query en17.png

Add a routing property:

Mes query en18.png

This implies that receiver is selected by process id and the id value is stored in id_query variable

Add variables:

Mes query en19.png

We have the following:

Mes query en20.png

Receiver configurations in MessageQuery process

Data processed in MessageResponse is being returned to MessageQuery, we have to configure "Receive message" node as following:

Mes query en21.png

Set route property as processInstanceId = ${currentInstanceId}, that is "by process id", and set the correspondence of variables str_query=str_response, so that the value sent in str_response is stored in str_query variable.

Creating .par archive file and deploying it to the system

Deploying created processes with the help of menu "File > Process export" and export directly to WFE server. After deployment we shall configure processes permission owners by adding manager group for MessageQuery process and staff group for MessageResponse process

Process execution

Process communication description

User starts MessageQuery process, inputs the message text to str_query variable. In this node action handler determines current instance id. Then message is send to MessageResponse instance with values of str_query and id_query variables. MessageQuery process goes to the next node and waits for the message with the resultant variable values.

User from staff group starts MessageResponse process. The control flow stops on "Receive message" node and waits for data. After the message is received the data is placed in str_response and id_query variables. Then the control flow enters "Input data" node where user edits str_response variable value. Then the edited value is sent back to MessageQuery instance, the id_query value is used.

MessageQuery receives str_query value from the message and goes to “Output data” node.

Process execution step by step

To start MessageQuery log in as user from manager group and click on the process name in the start process list:

Mes query en22.png

A new instance starts, control flow goes to “Input data” node

Mes query en23.png

Type the message text, e.g.: “Hello”

Mes query en24.png

The instance id is determined and message with str_query and id_query is sent.

Mes query en25.png

Control flow goes to "Receive message", and it waits here until the message comes from MessageResponse process.

Mes query en26.png

To start MessageResponse instance log in as user from staff group

Mes query en27.png

After start the control flow stops in "Message receive" node and waits for message.

Mes query en28.png

After the message is received the control flow goes to "Input data" node:

Mes query en29.png

Mes query en30.png

Here the user edits the received message text:

Mes query en31.png

Mes query en32.png

Then the message (Hello World!!!) is sent to instance with given id and MessageResponse instance ends:

Mes query en33.png

MessageQuery instance receives the message with str_response variable and stores its value to str_query (Hello World!!!), then it is being displayed in the form of “Output data” node.

Mes query en34.png

Mes query en35.png

The process ends:

Mes query en36.png

A short technical description

technical description