views:

949

answers:

5

What is BPEL? I'm looking for some nice simple examples of BPEL usage. The wikipedia page isn't too enlightening. How about a "Hello world" in BPEL? A BPEL shell? A BPEL IDE?

+1  A: 

Have a look at the ActiveBPEL IDE. Also you can find a short 101 BPEL guide in Oracle. The demo is about Oracle's BPEL engine, but the source is general enough.

kgiannakakis
+9  A: 

BPEL is just a way to build centralized control of disparate but interdependent systems from a centralized place. Users can create rules, workflows and other control structures to make sure everything plays nice. For example, say you run a school district; in particular, a school districts information infrastructure. Over the years you have accumulated a motley assorted group of hardware and software. For each aspect of your district; grading, attendance, bus routes, nutrition, payroll, etc, etc, you have various distinct software written in different languages by different vendors. Well, you have some overlap in your data and different end users use the different pieces of software and they expect it all to agree with each other...well you use your BPEL system to be sure all the data is where it is supposed to be when it is supposed to be there. You also have some processes that absolutely have to run after the successful completion of another process on a different system. You use BPEL to make sure those are coordinated. BPEL is all about centralized coordination and you probably don't need it unless you are in a large organization and lots of different systems.

Ichorus
A: 

have look at http://www.oraclearea51.com/oracle-technical-articles/oracle-fusion/oracle-bpel-technical-articles.html..

U have nice articles for beginners.

A: 

You can grab Hello World example from Apache ODE, which is BPEL engine HelloWorld2.bpel

Rafal Rusin