在运行时生成 BPEL 的框架?
我需要在运行时生成 BPEL XML 代码。我现在能做到的唯一方法是使用 DOM API “徒手”创建 XML 文档。但必须有一个框架可以通过结合某种对象模型来简化此类工作。
我想它应该看起来像这样:
BPELProcessFactory.CreateProcess().addSequence
你知道吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Eclipse BPEL 设计器 项目为 BPEL 2.0 提供了 EMF 模型。生成的代码可用于通过方便的 API 以编程方式创建 BPEL 代码。
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.
万一有人偶然发现这一点。
是的,这可以使用 BPEL 模型 来完成。
下面是一段生成非常简单的 BPEL 文件的示例代码:
依赖项要求您将以下 jar 从 eclipse 安装目录中的 plugins 文件夹添加到项目的构建路径中:
In case anyone stumbles upon this.
Yes this can be done using the BPEL Model.
Here is a sample piece of code which generates a quite trivial BPEL file:
The dependencies require that you add the following jars to the project's build path from the plugins folder in eclipse installation directory: