SoapUI:模拟服务
我有一个要求,我需要向现有的 Web 服务添加新方法。我已经使用 SOAPUI 模拟响应功能进行了模拟。但对于其他方法,我希望请求定向到其他一些端点(其中已经存在的实现)。
问候, 拉利特·库马尔
I have a requirement where I need to add a new method to existing web service. That I have mocked using SOAPUI mocking responses feature. But for other methods I want the request to direct to some other endpoint(where implementation of already existing).
Regards,
Lalit Kumar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,在客户端应用程序中,您需要为每个方法拥有单独的端点。并且您只需指向您的模拟服务器来获取新方法。
另一种可能性是配置 SoapUI 模拟服务来处理所有请求,并且除了新方法之外,调用原始后端。即它将成为旧服务的代理。这可能需要编写脚本。
So in the client application, you need to have separate endpoints for each method. And you only point to your mockserver for the new method.
Another possibility would be to configure the SoapUI mockservice to handle all requests, and except for the new method, to call the original backend. i.e. it would be a proxy for the old services. That would likely require scripting.