.net 项目可以发现并使用 WCF 服务吗?

发布于 2024-07-11 20:10:19 字数 122 浏览 5 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦屿孤独相伴 2024-07-18 20:10:19

是的,如果服务公开带有 basicHttpBinding 的 Endoint。 虽然有一些 您应该注意的问题

Yes, if the service exposes an endoint with basicHttpBinding. Although there are some issues you should be aware of.

三月梨花 2024-07-18 20:10:19

正如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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文