Generating BPEL files programmatically?

前端 未结 5 401
猫巷女王i
猫巷女王i 2021-01-12 13:36

Is there a way to generate BPEL programmatically in Java?

I tried using the BPEL Eclipse Designer API to write this code:

 Process process = null; 
         


        
5条回答
  •  孤街浪徒
    2021-01-12 13:56

    The Eclipse BPEL API is based on an EMF Model. So you could generate your own artifacts using JET or Xpand based on that. This way there is no requirement to run inside Eclipse.

    Although you may can't use BPEL outside of Eclipse, have you considered moving parts of your application inside it?

    The BPEL XML Schemas are listed in the appendig of the spec. So you could also base your work on that and integrate with existing BPEL applications where necessary.

提交回复
热议问题