I have a service application that hosts multiple WCF endpoints using different bindings. Now I want to host the WCF data service in the same service node. This post makes me believe that this is possible. However, each individual example of creating a WCF data service creates it from an ASP.NET web project, not a class library or service application. In fact, the WCF data service does not even appear in Add New Item if one of these project types is selected.
My question is how to create a WCF data service inside a class library that will be called by a service node that already contains several other WCF endpoints? The link that I already referred to shows me how to host the data service after creating it, but since it does not appear as an option to add a new item, m kinna is stuck.
source share