Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

  1. In the BPS management console, go to Configure -> Users and Roles -> Roles, and then click Add New Role.
  2. Enter regionalManagerRole for the role name and click Next.
     
  3. Select All Permissions to give all permissions to this role to the role created and click finish Finish (the users will be added later). 
  4. Repeat these steps to create another role called regionalClerksRole .

To create the users:

  1. Go to Configure -> Users and Roles -> Users, and then click Add New User.
    First, we will must create a user who will have has the regionalManagerRole role.
  2. Enter regionalManagerUser for the user name and enter any password, and then click Next.
  3. Select regionalManagerRole and click Finish.
  4. Repeat these steps to create another user with username regionalClerkUser and assign the regionalClerksRole as the role.

You now have the two users and are ready to deploy the sample.

...

The ClaimsApprovalProcess process is now deployed and appears in the Deployed Processes list.

Running the Sample

You will can now run the sample by taking using the following steps:

  1. Go to Main -> Processes -> List.
  2. In the Process ID column, click the process ID for ClaimsApprovalProcess: {http://www.wso2.org/humantask/claimsapprovalprocess.bpel}ClaimsApprovalProcess-1
    The Process Information screen appears, displaying information about this process.
  3. In the WSDL Details section of the process information screen, select claimsApprovalPartnerLink from the Partner-Links list, and then click Try It.
    A new browser window appears where you can replace the placeholder values with the values you want to send.
  4. Replace the sample with the following values:

    Code Block
    languagehtml/xml
    <body>
       <p:ClaimApprovalProcessInput xmlns:p="http://www.wso2.org/humantask/claimsapprovalprocessservice.wsdl">
          <xsd:custID xmlns:xsd="http://www.wso2.org/humantask/claimsapprovalprocessservice.wsdl">customerId</xsd:custID>
          <xsd:custFName xmlns:xsd="http://www.wso2.org/humantask/claimsapprovalprocessservice.wsdl">customerFName</xsd:custFName>
          <xsd:custLName xmlns:xsd="http://www.wso2.org/humantask/claimsapprovalprocessservice.wsdl">CustomerName</xsd:custLName>
          <xsd:amount xmlns:xsd="http://www.wso2.org/humantask/claimsapprovalprocessservice.wsdl">5000</xsd:amount>
          <xsd:region xmlns:xsd="http://www.wso2.org/humantask/claimsapprovalprocessservice.wsdl">reagon</xsd:region>
          <xsd:priority xmlns:xsd="http://www.wso2.org/humantask/claimsapprovalprocessservice.wsdl">1</xsd:priority>
       </p:ClaimApprovalProcessInput>
    </body>

    You can now view this process instance in the management console.

  5. Go to Main -> Business Processes -> Instances.
    Notice that the ClaimsApprovalProcess-1 instance has been created and is active.
  6. Click the instance ID to view the activity flow. The flow of the process depends on the value we specified for the amount property. If the amount is less than 1000, the BPEL process handles the approval, so the process terminates without initiating the human task. If the amount is over 5000, as we specified above, the ClaimsApprovalTask is initiated, and the process waits until it receives approval from the human task activity. To view this task, you must log in as the user who is assigned this task.
  7. Click Sign-out, and then log in as regionalClerkUser.
  8. Go to Main -> Human Tasks -> List (be sure to click the link lower down in the left navigation pane, not the one in the Manage group).

    The task appears in the My Tasks list.
  9. In the Task ID column, click the link for the task.
  10. Click Start to start the task.
    Image Modified

...

  1. To approve the request, click Approve in the Response section, and then click Complete.
    Image Modified

...

  1. Go to Main -> Business Processes -> Instances. You can see that the instance, which was previously waiting for approval, has now completed successfully.