Reputation: 5089
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.
Upvotes: 3
Views: 3766
Reputation: 20914
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.
Upvotes: 4
Reputation: 754220
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??
Upvotes: 1