- WS-BPEL 2.0 Beginner's Guide
- Matjaz B. Juric Denis Weerasiri
- 288字
- 2021-08-05 18:01:31
Understanding the BPEL language
Let's now have a more detailed look into what we did and try to understand what a BPEL process is. A BPEL process is basically a piece of source code with the .bpel
extension, which is executed on a process server. BPEL uses the XML vocabulary to write the code. So far, we have used the visual editor to compose the BPEL process. However, we can switch to the source code view.
A BPEL process consists of steps. Each step is called an activity. BPEL supports basic and structured activities. Basic activities represent basic constructs and are used for common tasks listed, as follows:
- Invoking other web services using
<invoke>
- Waiting for the client to invoke the business process through sending a message using
<receive>
(receiving a request) - Generating a response for synchronous operations using
<reply>
- Manipulating data variables using
<assign>
- Indicating faults and exceptions using
<throw>
and<rethrow>
- Waiting for some time using
<wait>
- Terminating the entire process using
<exit>
We can then combine these and other basic activities and define complex flows that specify exactly the steps of a business process. To combine basic activities, BPEL supports several structured activities. The most important are as follows:
- Sequence (
<sequence>
) for defining a set of activities that will be invoked in an ordered sequence - Flow (
<flow>
) for defining a set of activities that will be invoked in parallel - Conditional construct (
<if>
) for implementing branches - While, repeat, and for each (
<while>
,<repeatUntil>
,<forEach>
) for defining loops - The ability to select one of the number of alternative paths using
<pick>
Each BPEL process will also define partner links using <partnerLinks>
. Partner links are other services that use the BPEL process or are used by the BPEL process. A BPEL process also declares variables using <variables>
.
- Creating Mobile Apps with Sencha Touch 2
- 數據庫系統原理及應用教程(第4版)
- 數據驅動設計:A/B測試提升用戶體驗
- 企業級數據與AI項目成功之道
- 大數據架構商業之路:從業務需求到技術方案
- 信息學競賽寶典:數據結構基礎
- Oracle高性能SQL引擎剖析:SQL優化與調優機制詳解
- 改變未來的九大算法
- Mastering ROS for Robotics Programming(Second Edition)
- Hands-On System Programming with C++
- Deep Learning with R for Beginners
- GameMaker Game Programming with GML
- 敏捷數據分析工具箱:深入解析ADW+OAC
- 數據庫高效優化:架構、規范與SQL技巧
- Hadoop海量數據處理:技術詳解與項目實戰(第2版)