In my last post I wrote about a WCF hang I caused because of a newbie mistake. I also wrote that I would post about how to create a simple WCF service. This tutorial is mostly for myself so that I?ll remember what I did, but hopefully it might benefit some other people too?
The WCF service I will create here (MyGameService) is one that will keep track of all the games for my game site.
Creating a WCF Service and hosting it in IIS
1. In Visual Studio 2008, choose File / New / Web Site? / WCF Service and put it in the location http://localhost/MyGameService.
Note: You could have choose File / New / Project and Web / WCF Service Application as well but this would have created a file based one that you would l ...
Go to the complete details ...