有没有办法公开 WCF 方法并能够像 asmx 一样调用它们?
有没有办法公开 WCF 方法并能够像在 asmx 文件上一样调用它们?
例如: http://www.w3schools.com/webservices/tempconvert.asmx
在上面的链接中您可以选择不同的操作并可以在浏览器中调用它们,是否有任何方法可以使用 IIS 服务器上的 WCF 服务 .svc 文件复制该操作?
Is there any way to expose WCF methods and be able to invoke them like on an asmx file?
For example:
http://www.w3schools.com/webservices/tempconvert.asmx
In the above link you can select the different operations and can invoke them in the browser, is there any way to replicate that with a WCF service .svc file on an IIS server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
并不真地;您可以使用 WcfTestClient - http://msdn.microsoft.com/en-us /library/bb552364.aspx - 测试方法,但 WCF 没有内置的“自动调用程序”。
Not really; you can use the WcfTestClient - http://msdn.microsoft.com/en-us/library/bb552364.aspx - to test the methods, but there's no built-in "auto-invoker" for WCF.
查看方法是否正常工作的更好方法是创建单元测试来调用它们。这样,您就可以查看您的方法是否继续工作。
The better way to see if your methods are working correctly is to create unit tests to call them. That way, you can see if your methods continue to work.