测试 WCF 服务(不是 SOAP/HTTP Web 服务)的好工具
我最近发现了 SOAPUI,并发现它是测试任何 SOAP/HTTP 服务的绝佳工具。按照惯例,到目前为止,我们一直在开发自己的驱动程序来测试我们的服务(基于 WCF 的 netTCP 绑定)。但凭借 SOAPUI 的经验,我确实在寻找一些这样的工具,可以轻松地使用内置设施进行负载测试、功能测试等。
我脑海中的另一个想法是,对于我希望使用 netTCP 部署的服务可以首先使用 SOAPUI 使用 HTTP 绑定进行测试。一旦发现合适,就可以将绑定更改为预期的绑定。
我想听听在座各位专家的意见。
谢谢。
I recently found SOAPUI and discovered that it is just a great tool for testing any SOAP/HTTP service. Conventionally, we have been developing our own driver to test our services (WCF based netTCP binding) so far. But with SOAPUI experience, I am really looking for some such tool that can be used with such ease with built-in facilities for load testing, functional testing etc.
The other thought in my mind is that for services that I wish to deploy with netTCP can be first tested using a HTTP binding using SOAPUI. Once found suitable, the binding can be changed for the intended one.
I shall like the views from all the experts here.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就独立工具而言,我对 wcfstorm (商业)和 < a href="http://www.wcfstorm.com/wcf/wcfstorm-lite.aspx" rel="nofollow noreferrer">wcfstorm LITE (免费)
但一般来说,当绑定允许时,我只需启动受控服务器中的服务并运行 NUnit对其进行测试。
As far as standalone tools go, I have decent experience with wcfstorm (commercial) and wcfstorm LITE (free)
But generally, when bindings allow, I just spin up the service in a controlled server and run NUnit tests against it.
我编写自动化单元测试来测试服务。这样,我就不再依赖于工具。
I write automated unit tests to test the services. That way, I'm not dependent on a tool.