com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.

Working with Timer Boundary Events

The following scenario simulates a simple leave approval business process, in which an employee fills a form and submits the leave request to the manager and the manager approves or rejects it. The employee receives an email if the manager approves the request. Otherwise, if the manager rejects it, the employee will be able to resend the leave request by adjusting it. 

You can use Timer Boundary Events to implement time-sensitive business logics. For example, in this scenario, if the manager does not approve the leave request of the employee within a certain time period, you can use a Timer Boundary Event to escalate it via sending an email to the employee.

Before you begin,

  • Download the product installer from here, and run the installer.
    Let's call the installation location of your product the <EI_HOME> directory.

    Note that if you used the product installer to install your product, the <EI_HOME> is located in a place specific to your OS as shown below:

    OSHome directory
    Mac OS/Library/WSO2/EnterpriseIntegrator/6.3.0
    WindowsC:\Program Files\WSO2\EnterpriseIntegrator\6.3.0\
    Ubuntu/usr/lib/wso2/EnterpriseIntegrator/6.3.0
    CentOS/usr/lib64/EnterpriseIntegrator/6.3.0
  • Select and download the relevant WSO2 EI tooling ZIP file based on your operating system from here and then extract the ZIP file.
    The path to this folder is referred to as <EI_TOOLING>throughout this tutorial.

    Getting an error message? See the troubleshooting tips given under Installing Enterprise Integrator Tooling.

Let's get started! This tutorial includes the following sections:

Importing artifacts 

If you did not try the Working with Mail Tasks tutorial yet, follow the steps below to import its artifacts as you will be extending on that.

  1. Download the pre-packaged project and extract it to a preferred location. This contains the artifacts of the Working with Mail Tasks tutorial. 
  2. Open the WSO2 EI Tooling environment.
  3. Click File, and click Import
  4. Expand the WSO2 category, select Existing WSO2 Projects into workspace and click Next.
  5. Click Browse, select the file you extracted and upload it.  
  6. In the Package Explorer, double click on the name of the BPMN diagram to view the BPMN artifacts you imported.

Creating new artifacts

The next step of the process is adding a Timer Boundary Event to send an email to the employee if the manager does not approve the leave request within a certain time period. Follow the steps below to implement this.

  1. Drag and drop a Timer Boundary Event from the Boundary event tab of the Palette, and place it above the Review leave request User Task.


  2. Click on the Timer Boundary Event and click the Main config section of the Properties tab.
  3. Change the value of the Cancel activity field to false since you are not going to cancel the existing User Task, and enter a value  in the ISO_8601 format for the Time duration, within which you want the escalation to happen (e.g., PT60S for 60 seconds).


  4. Add a new Mail Task to the diagram. This will send an escalation email.
  5. Click on the Mail Task, and change the value of the Name field to Send escalation email in the General section of the Properties tab. 


  6. Hover your mouse pointer over the  Timer Boundary Event, and click on the arrow icon (i.e., the Create Connection option) and connect it to the Send escalation email Mail Task.


  7. Add a Terminate End Event and connect the Send escalation email Mail Task to it.

  8. Press Ctrl+S to save all the artifacts, which you created in WSO2 EI Tooling.
    The model is now complete as the necessary logic has been applied.

Configuring the Send escalation email Mail Task

  1. In the Main Config section of the Properties tab (of the Send escalation email  Mail Task), fill the respective fields (i.e., ToFromSubject). You can give the Pending Leave Requests.
  2. In the Non-HTML field of the Main Config section, enter Please approve the pending leave requests. The variable will be used to create the email body.
  3. Copy the following JAR files into the<EI_HOME>/lib directory and restart the Business Process profile server instance. 

  4. In the <EI_HOME>/wso2/business-process/conf/activiti.xml file, add the following properties under the <bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.StandaloneProcessEngineConfiguration"> property as shown below, to enable the Gmail configurations.

    • Replace the mailServerHost and mailServerPort property values as follows:

      <property name="mailServerHost" value="smtp.gmail.com"/>
      <property name="mailServerPort" value="587"/>
    • Add the following properties:

      <property name="mailServerDefaultFrom" value="<ENTER_A_VALID_SMTP_EMAIL_ADDRESS>"/>
      <property name="mailServerUseTLS" value="true"/>
      <property name="mailServerUsername" value="<ENTER_A_VALID_SMTP_EMAIL_ADDRESS>"/>
      <property name="mailServerPassword" value="<ENTER_THE_EMAIL_PASSWORD>"/>

      If you are using Gmail to try out this scenario, you may need to enable IMAP access for Gmail. For more information, see Enable IMAP settings in Gmail. Also, if you receive an authentication error, you may have to adjust your account access settings in Gmail as well. For more information, see Allowing less secure apps to access your account.

Deploying the artifacts

  1. For instructions on creating the deployable artifacts, see Creating the deployable archive.
  2. For instructions on deploying them, see Deploying BPMN artifacts.

Creating the user

  1. Log in to the Management Console of the Business Process profile.
  2. Click Configure → Users and Roles → Add → Add New User.
  3. Enter the below details to create a user called manager and click Next.

    Enter both the User Name and the Password as manager.


  4. In the next screen, assign the user to the admin role and click Finish.

    You view the new user you created as shown below.

Testing the output

Follow the steps below to test the output.

  1. Log in to the BPMN-explorer at https://localhost:9445/bpmn-explorer using admin for both the username and password.
  2. Click PROCESSES in the top menu, and click the Start option of the Leave Approval Process.
  3. Initiate the process by filling the form and click Start.

    You view a pop-up message upon successful process initiation. Wait for 60 seconds and you will receive the escalation email to approve the pending leave request.

com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links' is unknown.