I created my first WCF service and tested it on my computer, and it works.
The files present are an interface, an implementation of that interface, and an app.config file.
Now that it is time to host this on a real server with IIS, I was told IIS looks for a .svc file when receiving incoming calls.
Here is what I found:
WCF services hosted in IIS are represented as special content files (.svc files) inside the IIS application. This model is similar to the way ASMX pages are represented inside of an IIS application as .asmx files. A .svc file contains a WCF-specific processing directive (@ServiceHost) that allows the WCF hosting infrastructure to activate hosted services in response to incoming messages.
Can someone please guide me as to how I can create this file so that I may host it?
Thanks!