帮助我为 ABCS 请求者创建测试存根
这是我的 ABCS 的图像。它是一个请求者 ABCS,充当遗留系统和 EBS 之间的接口:
步骤基本上如下如下所示:
旧系统发出请求(假设创建故障单)。
我们将 ABM 请求转换为 EBS 请求。
我们调用 EBS。
EBS 向 ABCS 发送响应。
ABCS 向 EBS 发送确认响应。
我需要创建一个简单的存根,可用于通过soapUI 测试此ABCS BPEL。有人能给我一个关于它应该是什么样子的总体想法吗?我正在寻找一些简单的 BPEL 图示例,可能带有一些描述。
So here is an image of my ABCS. It is a requester ABCS which acts as an interface between a legacy system and EBS:
The steps are basically as follows:
Legacy system makes a request (let's say a creation of a trouble ticket).
We transform the ABM request to EBS request.
We invoke the EBS.
EBS sends response to ABCS.
ABCS sends an acknowledgement response to EBS.
I need to create a simple stub that could be used to test this ABCS BPEL with soapUI. Can somebody give me a general idea about how it should look? I'm looking for some simple BPEL diagram example maybe with some description.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想让我做什么?
如果您想通过 EBS 模拟来测试您的实现,您可以使用 JDeveloper 测试工具。
如果您必须从 SoapUi 测试 BPEL,您是否正在寻找一种解决方案来创建模拟您的 EBS 的模拟?
编辑:构建模拟的解决方案:
模板“基于 wsdl” 在 WSDL 输入字段中,单击“查找
现有的 wsdl”
第一个和第二个解决方案是侵入性的,您必须编辑 SOA 模块才能进行测试。
更好的方法是将您的模拟构建到另一个组合中,并使用部署计划为您的模拟提供测试环境。
What do you want to do?
If you want to test your implementation with a simulation of EBS, you could use the JDeveloper test tool.
If you have to test your BPEL from SoapUi, you are looking for a solution to create a mock which is simulating your EBS ?
Edit : The solution to build a mock :
template "based on a wsdl" In the WSDL input field, click "find
existing wsdl"
The first and the second solution are intrusive, you have to edit your SOA module to made your test.
The better way is to build your mock into another composite and to use the deployement plan to have a test environnement with your mock.