如何从网页调用本地WCF服务?
我正在开发一个网页,该网页应该使用位于客户端计算机上的 WCF Web 服务。首先,用户在他的计算机上安装一些托管 WCF 服务的软件,然后他将查看我的网页,该网页应该调用 WCF 服务。您知道如何在不使用 AtiveX 和 IE 的情况下做到这一点吗?
I'm developing a webpage that is supposed to consume WCF webserice that is located on client's computer. First, user installs some software that hosts WCF service on his computer, then he'll view my webpage which is supposed to call the WCF service. Do you have any idea how to do it without having to use AtiveX and IE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的 wcf 服务作为服务引用添加到您的 Web 项目。您必须指定 wcf 服务的 url。将为您生成一个 clientproxyclass。在您的网页或任何其他地方,您可以创建此代理类的实例并编写您想要的代码。
Add your wcf service as service reference to your web project. You have to specify the url of your wcf service. A clientproxyclass will be generated for you. In your webpages or whathever you can create a instance of this proxyclass and just code what you want.