使用 .NET 的 WCF 桌面
我们需要开发一个 WCF 应用程序,它将构成 ESB 的关键部分。
不幸的是,一些需要访问这些服务的计算机具有 .NET 2.0,并且它们很可能不想更新它们。
是否有一种技术可以用来与 WCF 端点对话而无需使用 > > .NET 2.0?
插座等?
非常感谢!
We have a need to develop a WCF app that will form a key part of an ESB.
Unfortunately, some of the machines that need to access theses services have .NET 2.0 and there is a good chance that they won't want to update them.
Is there a technology that can be used to speak to a WCF endpoint without using > .NET 2.0?
Sockets etc?
Thank you muchly!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.NET 2.0 能够轻松连接并利用基于 SOAP 的 Web 服务。
只需确保 WCF 服务上有 SOAP 端点,就不会有任何问题。
.NET 2.0 was easily able to connect to and utilize SOAP based web services.
Just ensure that you have a SOAP endpoint on your WCF services and you shouldn't have any trouble.
对于 WCF 服务,请使用 BasicHttpBinding(配置:basicHttpBinding)。在 2.0 机器上,wsdl.exe 应该能够导入所有内容并生成合适的代理。
For the WCF services, use
BasicHttpBinding
(config: basicHttpBinding). On the 2.0 boxes, wsdl.exe should be able to import everything and generate decent proxies.