Hosting a WCF Service in IIS / C#

Step 1: Create a new Visual Studio project Choose the WCF installed template and create a new WCF Service Application: Step 2: Create your web service code Update the IService1.cs and Service1.svc.cs classes that are automatically created. You can of course delete these and create your own but I am re-using here for the sake …

Continue reading ‘Hosting a WCF Service in IIS / C#’ »

Creating and consuming a web service in WCF

Creating the WCF web service in Visual Studio In this post I am using the WCF Web Service as an example, see this post for an example using using asmx: https://www.technical-recipes.com/2017/creating-and-consuming-a-web-service-in-c-net/ A useful C# Corner post: http://www.c-sharpcorner.com/article/create-wcf-web-service-in-visual-studio-2015/ Create a new Visual Studio project In Visual Studio select the WCF installed template and create a new …

Continue reading ‘Creating and consuming a web service in WCF’ »