Posts Tagged ‘WCF’
Deploying a WCF Service on IIS
Wednesday, May 21st, 2008Discovered that you can and should manually create a MyService.svc file in the root web folder.
Rename app.config to web.config
Manually copy your binaries from /bin/Debug or /bin/Release to /bin
Don’t forget to add <DataMember() _ above your public properties. Making them public is not enough.