XABP 和 WCF wsHttpBinding
如何在 WPF 浏览器应用程序上使用 WCF wsHttpBinding?
How can I use WCF wsHttpBinding on my WPF Browser application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 WPF 浏览器应用程序上使用 WCF wsHttpBinding?
How can I use WCF wsHttpBinding on my WPF Browser application?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
它可以正常工作,就像在 Windows 应用程序项目和 ASP.Net 应用程序上一样。您只需将 ServiceReference 添加到指向 wcf 服务的 xbap 项目,Visual Studio 将自动生成绑定(wsHttpBinding 类型)和指向 app.config 上的服务的客户端终结点(xbap 也使用 app.config)。
然后在 xbap 页面的代码隐藏中,只需执行使用 WCF 服务的常规编码即可。
It works normally as it is on Windows application project and ASP.Net application. You just need to add ServiceReference to your xbap project pointing to your wcf service and Visual Studio will automatically generate the bindings (of wsHttpBinding type) and client endpoint pointing to your service on the app.config (xbap also uses app.config).
Then on your xbap page's codebehind, just do the usual coduing on consuming WCF services.