如何在 IIS7 中托管 WCF 数据服务 (OData)?
有谁知道如何在 IIS7 中托管 WCF 数据服务(或 OData)?我看到很多有关托管 WCF 的文章,但没有一篇专门针对 WCF 数据服务。
非常感谢。
Does anyone know how to host a WCF Data Service (or OData) inside IIS7? I'm seeing lots of articles about hosting WCF, but none specific to WCF Data Service.
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 IIS 中托管 WCF 数据服务实际上是默认选项。
这是一个非常简单的 3 步过程:
步骤3 只是将 Web 应用程序部署到 IIS 的标准流程。
Hosting a WCF Data Service in IIS is actually the default option.
Its a pretty easy 3 step process:
Step 3 is just the standard process for deploying a WebApplication to IIS.
WCF 数据服务 只是一个 WCF (REST) 服务,添加了一些额外的开箱即用功能。
它有一个
*.svc
文件和所有- 它将与“常规”WCF REST 服务非常相似地托管。因此,您看到的有关 WCF REST 的所有文章都应该真正适用于 WCF 数据服务 - 或者您是否在某些特定方面遇到了一些困难?
A WCF Data Service is just a WCF (REST) service, with some additional out-of-the-box functionality added in.
It has a
*.svc
file and all - it will be hosted very much the same as a "regular" WCF REST service.So all the articles you see about WCF REST should really apply to WCF Data Services as well - or are you experiencing some difficulties with something specifically??