.net 项目可以发现并使用 WCF 服务吗?
我在 IIS 中创建了一个基本的 WCF 服务。 我知道这应该在 .net 3.0 和 .net 3.5 中开发。 我的问题是这样的。 运行.net 2.0的客户端可以访问和使用WCF服务吗?
干杯
I have created a basic WCF service in IIS. I am aware that this should be developed in .net 3.0 and .net 3.5. My question is this. Can a client running .net 2.0 access and consume the WCF service?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,如果服务公开带有 basicHttpBinding 的 Endoint。 虽然有一些 您应该注意的问题。
Yes, if the service exposes an endoint with basicHttpBinding. Although there are some issues you should be aware of.
正如darin所说,只有当你的wcf使用basicHttpBinding公开时,你才能从2.0访问该服务。 此绑定将公开与 WS-BasicProfile 1.1 兼容的 SOAP,这与旧的 ASMX 服务相同。
as darin said you can access the service from 2.0 only if your wcf is exposed using the basicHttpBinding. This binding will expose SOAP that is compatible with WS-BasicProfile 1.1 which is the same as the older ASMX services.