WCF 数据服务可以由 IIS 以外的其他程序托管吗?
是否可以像使用 WCF 服务或工作流服务一样使用 ServiceHost 类托管 WCF 数据服务?如果不是,是什么限制了它以这种方式托管?
Is it possible to host a WCF Data Service with the ServiceHost class as you can with WCF services or Workflow Services? If not, what limits it from being hosted in that manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。按照 此 MSDN 参考页面。
Yes. You'll have the best luck with using the
DataServiceHost
as described in this MSDN reference page.看看下面的文章。
http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/1764 /Default.aspx
这解释了如何从头开始创建数据服务,然后将其托管在控制台应用程序中。
希望这能让您了解如何做到这一点。
Have a look at the following article.
http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/1764/Default.aspx
This explains how to create a Data Service from scratch and then host it in a console application.
Hope this might give you some insights into how this can be done.