Generating BPEL files programmatically?

前端 未结 5 403
猫巷女王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 14:02

    You might want to give JAXB a try. It helps you to transform the official BPEL XSD into Java classes. You use those classes to construct your BPEL document and output it.

提交回复
热议问题