This is the WSO2 Business Process Server documentation version 3.1.0.View documentation for the latest release.

Unknown macro: {next_previous_link3}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

1. Download and setup WSO2 Developer Studio. (http://wso2.com/products/developer-studio)

2. Open the Developer Studio and select File -> new -> Other.

3. From the dialog window, select "Carbon Application Project" and click Next.

4. Provide a suitable name to the Carbon application project. In this example, it is named as "WS_NumberAdderCarbon". Click "Finish" once done.

5. Carbon Application project will be created and you can see it on “Project Explore” window

6. Create a new BPEL project. Right click on the project which is on “Project Explore” window and choose New -> BPEL WorkFlow

7. On the “Create New BPEL Project” wizard, select "Create New BPEL workflow" and click Next to continue.

8. Provide suitable names, a namespace and select the matching template for your BPEL process and project. 

In this example, we use "BPELNumberAdder" as the project name. Also provide a valid namespace as the process namespace. Since we are creating the synchronous business process, select the template “Synchronous BPEL Process”.

 

9. Click "Finish" to close the wizard.

Expand the "WS_NumberAdderCarbon" project folder in the "Project Explore" window to view another folder named "BPELNumberAdder". The "BPELNumberAdder" project is used here for BPEL process development. The “Project Explorer” window and the AdderProcess.bpel file will look like the following.

This point onwards you have to design your BPEL process by adding business logic to the BPEL process. In this guide we will be designing a simple process to add two integers.

10. Open “AdderProcessArtifacts.wsdl” file in BPELNumberAdder Project in order to set input parameters. Click on the arrow next to "Adder Process Request".

It will open another tab called “Inline Schema of Add”. By default it will have a single variable named “input” with type string. Rename it as x and set the type to int.

11. You need to add another element. To add another element right-click on "AdderProcessRequestType" and “add an element” after it. Name it "y" and set the "type" as "int". Now it should look like the follwing image.

12.  Now lets design the simple business logic. Open the AdderProcess.bpel file. You need to add business logic in the place of where “FIX_ME-Add_Business_Logic_Here” activity resides. Delete the “FIX_ME-Add_Business_Logic_Here” element. You will have the following process.

(Tip: to delete, right-click on the element and choose delete)

 

 

13. Now you need to add an Assign activity in between “receiveInput” and “callbackClient” activities. To add Assign activity drag it from the Action section of the Action Palette.

(Tip: another way to add activity element to the editor is right-click on element and use add-before option)

 

14. Now you need to configure Assign activity. Click on “Assign” element which is on BPEL process and then click on “Details” tab in ”property window”.

Click on “New” which will lead you to the following view in “property window”

 

15.  We will use an Xpath expression to compute the addition of two variables and assign the result to the output variable. To do that choose “Expression” from “From” drop down list and choose “Variable” from “To” drop down list.

17. Choose “Xpath 1.0 in BPEL 2.0 ” as Expression Language.

18. The Expression which we need to evaluate is “ $input.payload/tns:x + $input.payload/tns:y ”. Include this in the box below “Expression Language”.

19. Select “result:string” under “To” as the assigned variable.

 

20. While you configure the variables, The editor will ask to initialize the variables. Click yes. It will automatically generate an xml string for variable initialization.

The property window of Assign activity should look like the following once you have completed the steps.

 

21. Now you need to define inbound and out bound interfaces. Open deploy.xml file which is in the BPEL project. Choose AdderProcessPort as the inbound address port from the given list. Rest of the parameters will be automatically filled once you select it.

There will not be any ports for out bound interfaces as we do not have external invocations in this business process.

22. Include the BPEL process as a dependency of the Carbon Application (WS_NumberAdderCarbon). To include it, open “pom.xml” of Carbon application project and select BPELNumberAdder as a dependency. 

  • No labels