I’ve add a project type of WCF Service Library to my project. Doing this has allowed me to develop and test a WCF Service, however this service runs off an App.config and not Web.config. In addition, it has no .SVC file like my prior projects. What do I need to do in order to deploy this to IIS 6.
Regards.
Basically four steps:
<system.serviceModel>part from your app.config and put it in web.configAdd an
MyService.svcfile to that directory which contains :That’s about all there is to it!
Marc