如何在 C# 中调用测试服务器(没有 VS2010)上的 WCF 服务方法
我创建了一个 WCF 服务,它也写入日志文件。 我把它放在 IIS 上并运行 SVC 文件来检查它是否运行正常,确实如此。
我如何模拟它的方法? 我是否创建另一个调用其方法的网站,并使用日志文件来跟踪其步骤? 我可以在测试服务器上安装 WCFTestClient 吗?
在没有安装 VS2010 的情况下模拟 wcf 方法的最佳方法是什么?
在 asmx 服务中,您只需“浏览”服务并在服务方法中输入参数,我可以在 WCF 方法中执行此操作吗?
i created a WCF service that also writes into a log file.
i put it On the IIS and run the SVC file to check if it runs ok and it does.
how do i simulate its methods?
do i create another web site that calls its methods, and use the log file to trace its steps ?
can i install WCFTestClient on the test server ?
what is the best way to simulate wcf methods without a VS2010 installed ?
in asmx services you just "browse" the service and input the parameters in the service methods, can i do that in WCF methods ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要在服务器上安装
WCFTestClient
。您可以从远程计算机使用它来调用服务。如果您的服务使用可互操作的绑定,您还可以查看 SoapUI。You don't need to install
WCFTestClient
on the server. You could use it from a remote machine to call the service. If your service uses an interoperable binding you could also take a look at SoapUI.