jBPM (jBoss) 中 Java 和 Wcf 互操作性的最佳选择
我正在使用在 jBoss 中运行的工作流引擎 jBPM。
在工作流程中,我需要调用在 .Net WCF 中实现的方法,但显然 jBPM 在 Java 中运行。
因此我想知道,考虑到 jBoss 已经在运行,这是使用 Java 与 WCF 公开服务进行通信的最佳方式。
编辑:我的想法是将 Glassfish 中的 java 部分实现为 Web 服务,但我不知道这是否是最佳选择。 WCF 作为 SOAP 解决方案非常简单,我想要在 java 中实现类似的东西
I'm using the workflow engine jBPM which runs in jBoss.
During the workflow I'll need to call methods implemented in .Net WCF but obviously jBPM runs in Java.
Therefore I'd like to know, considering already have jBoss running, which is the best way to communicate with WCF exposed services using Java.
Edit: What I had in mind was implementing the java part in Glassfish as a web service but I don't know if that's the best choice. WCF is quite simple as a SOAP solution and I wanted something similar in java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 JAX-WS 客户端库从 WCF 服务创建简单的客户端,并使用 jBPM 中的服务。
干杯
You can just create simple clients from your WCF services using the JAX-WS client libraries and consume your services from jBPM.
Cheers