6 min read

We will build a HelloWorld WCF service by carrying out the following steps:

  1. Create the solution and project
  2. Create the WCF service contract interface
  3. Implement the WCF service
  4. Host the WCF service in the ASP.NET Development Server
  5. Create a client application to consume this WCF service

Creating the HelloWorld solution and project

Before we can build the WCF service, we need to create a solution for our service projects. We also need a directory in which to save all the files. Throughout this article, we will save our project source codes in the D:SOAwithWCFandLINQProjects directory. We will have a subfolder for each solution we create, and under this solution folder, we will have one subfolder for each project.

For this HelloWorld solution, the final directory structure is shown in the following image:

Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

You don’t need to manually create these directories via Windows Explorer; Visual Studio will create them automatically when you create the solutions and projects.

Now, follow these steps to create our first solution and the HelloWorld project:

  1. Start Visual Studio 2008. If the Open Project dialog box pops up, click Cancel to close it.
  2. Go to menu File | New | Project. The New Project dialog window will appear.
  3. Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

  4. From the left-hand side of the window (Project types), expand Other Project Types and then select Visual Studio Solutions as the project type. From the right-hand side of the window (Templates), select Blank Solution as the template.
  5. At the bottom of the window, type HelloWorld as the Name, and D:SOAwithWCFandLINQProjects as the Location. Note that you should not enter HelloWorld within the location, because Visual Studio will automatically create a folder for a new solution.
  6. Click the OK button to close this window and your screen should look like the following image, with an empty solution.
  7. Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

  8. Depending on your settings, the layout may be different. But you should still have an empty solution in your Solution Explorer. If you don’t see Solution Explorer, go to menu View | Solution Explorer, or press Ctrl+Alt+L to bring it up.
  9. In the Solution Explorer, right-click on the solution, and select Add | New Project… from the context menu. You can also go to menu File | Add | New Project… to get the same result. The following image shows the context menu for adding a new project.
  10. Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

  11. The Add New Project window should now appear on your screen. In the left-hand side of this window (Project types), select Visual C# as the project type, and on the right-hand side of the window (Templates), select Class Library as the template.
  12. At the bottom of the window, type HelloWorldService as the Name. Leave D:SOAwithWCFandLINQProjectsHelloWorld as the Location. Again, don’t add HelloWorldService to the location, as Visual Studio will create a subfolder for this new project (Visual Studio will use the solution folder as the default base folder for all the new projects added to the solution).

    Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

    You may have noticed that there is already a template for WCF Service Application in Visual Studio 2008. For the very first example, we will not use this template. Instead, we will create everything by ourselves so you know what the purpose of each template is. This is an excellent way for you to understand and master this new technology.

  13. Now, you can click the OK button to close this window.

Once you click the OK button, Visual Studio will create several files for you. The first file is the project file. This is an XML file under the project directory, and it is called HelloWorldService.csproj.

Visual Studio also creates an empty class file, called Class1.cs. Later, we will change this default name to a more meaningful one, and change its namespace to our own one.

Three directories are created automatically under the project folder—one to hold the binary files, another to hold the object files, and a third one for the properties files of the project.

The window on your screen should now look like the following image:

Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

We now have a new solution and project created. Next, we will develop and build this service. But before we go any further, we need to do two things to this project:

  1. Click the Show All Files button on the Solution Explorer toolbar. It is the second button from the left, just above the word Solution inside the Solution Explorer. If you allow your mouse to hover above this button, you will see the hint Show All Files, as shown in above diagram. Clicking this button will show all files and directories in your hard disk under the project folder-rven those items that are not included in the project. Make sure that you don’t have the solution item selected. Otherwise, you can’t see the Show All Files button.
  2. Change the default namespace of the project. From the Solution Explorer, right-click on the HelloWorldService project, select Properties from the context menu, or go to menu item Project | HelloWorldService Properties…. You will see the project properties dialog window. On the Application tab, change the Default namespace to MyWCFServices.
  3. Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

Lastly, in order to develop a WCF service, we need to add a reference to the ServiceModel namespace.

  1. On the Solution Explorer window, right-click on the HelloWorldService project, and select Add Reference… from the context menu. You can also go to the menu item Project | Add Reference… to do this. The Add Reference dialog window should appear on your screen.
  2. Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

  3. Select System.ServiceModel from the .NET tab, and click OK.

Now, on the Solution Explorer, if you expand the references of the HelloWorldService project, you will see that System.ServiceModel has been added. Also note that System.Xml.Linq is added by default. We will use this later when we query a database.

Creating the HelloWorldService service contract interface

In the previous section, we created the solution and the project for the HelloWorld WCF Service. From this section on, we will start building the HelloWorld WCF service. First, we need to create the service contract interface.

  1. In the Solution Explorer, right-click on the HelloWorldService project, and select Add | New Item…. from the context menu. The following Add New Item – HelloWorldService dialog window should appear on your screen.
  2. Implementing a Basic HelloWorld WCF (Windows Communication Foundation) Service

  3. On the left-hand side of the window (Categories), select Visual C# Items as the category, and on the right-hand side of the window (Templates), select Interface as the template.
  4. At the bottom of the window, change the Name from Interface1.cs to IHelloWorldService.cs.
  5. Click the Add button.

Now, an empty service interface file has been added to the project. Follow the steps below to customize it.

  1. Add a using statement:

    using System.ServiceModel;

  2. Add a ServiceContract attribute to the interface. This will designate the interface as a WCF service contract interface.

    [ServiceContract]

  3. Add a GetMessage method to the interface. This method will take a string as the input, and return another string as the result. It also has an attribute, OperationContract.

    [OperationContract] String GetMessage(String name);

  4. Change the interface to public.

The final content of the file IHelloWorldService.cs should look like the following:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
namespace MyWCFServices
{
[ServiceContract]
public interface IHelloWorldService
{
[OperationContract]
String GetMessage(String name);
}
}

LEAVE A REPLY

Please enter your comment!
Please enter your name here