使用添加Web引用并添加soap标头来使用WCF服务
我有一个 WCF 4 Web 服务来检查肥皂头。这适用于 WCF 客户端,但我有一个客户需要使用其应用程序中的旧 Web 引用。如何使用“添加 Web 引用”并在客户端中添加 SOAP 标头来使用 WCF 服务?让我们保持简单,假设我想在标头中传递一个国家/地区,因此标头名称将是国家/地区。
谢谢, 保罗
I have a WCF 4 web service that checks for a soap header. This works fine with a WCF client but I have a customer that needs to use the old web reference from their app. How do you consume a WCF service using Add Web Reference and the add a SOAP header in the client? Lets keep it simple and say I want to pass a country in a header, so the header name will be country.
Thanks,
Paul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要通过 basicHttpBinding 公开端点,以便与 .net 3.0 之前的客户端进行互操作。
更新
这有帮助吗? http://msmvps.com/blogs/paulomorgado/archive/2007/04/27/wcf-building-an-http-user-agent-message-inspector.aspx
You need to expose your endpoint across the basicHttpBinding in order to interoperate with pre .net 3.0 clients.
UPDATE
Does this help? http://msmvps.com/blogs/paulomorgado/archive/2007/04/27/wcf-building-an-http-user-agent-message-inspector.aspx