Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Framework for generating BPEL in runtime?

Tags:

runtime

bpel

I need to generate BPEL XML code in runtime. The only way I can do it now is to create XML document with "bare hands" using DOM API. But there must be a framework that could ease such work incorporating some kind of object model.

I guess it should look something like this:

BPELProcessFactory.CreateProcess().addSequence

Do you know any?

like image 404
RigidRoamer Avatar asked Mar 12 '26 15:03

RigidRoamer


1 Answers

The Eclipse BPEL designer project provides an EMF model for BPEL 2.0. The generated code can be used to programmatically create BPEL code with a convenient API.

like image 130
vanto Avatar answered Mar 15 '26 03:03

vanto