Creating a WCF Service Application

Refer to Choosing WCF or Web API for additional information on WCF and Web API.

Note: If you are creating a new WCF web service, it is recommended that you use the Multi-Targeting Issues project type.

This presentation project provides a WCF service interface for a ClearPath Data Source application. This project does not rely on ASP.Net, rather it uses SOAP for session management and security.

Procedure 1 - Creating a WCF Service Application

To add a WCF Service Application project, do the following:

  1. On the File menu, point to New and click Project.

  2. In the Create a new project dialog box, do the following:

    Notes:

    • Select C# or All Languages from the Language list.

    • Select Windows or All Platforms from the Platform list.

    The ePortal templates are not displayed if other values are selected.

    1. Select ePortal Presentation from the Project Type list.

      The ePortal Presentation templates are displayed.

    2. Do any one of the following to select the template:

      • From the templates list, select WCF Service Application, and then click Next.

      • Enter WCF Service Application in the search option, select the template from the search result, and then click Next.

  3. Optionally, change the Project name, Location, and Framework, and click Create.

    Notes:

    • If you do not select a desired Framework, a default Framework version is selected.

    • For information on selecting the .NET version, refer to Multi-Targeting Issues.

  4. On the Presentation Generation Options dialog, enter values for the generation. Refer to Presentation Generation Properties for a WCF Service Application.

  5. Click OK. The presentation project appears in Solution Explorer.

Procedure 2 - Building the Project

In Solution Explorer, right-click the WCF Service project node, and then click Build. Refer to Building Your ePortal Solution for more information.

When the project is built, ePortal generates the files to implement a WCF Service Application based on the data source.

Refer to Consuming the Web Service Methods by a Web Service Client for information about using the methods in a Web service client.

Generated Files

Building a WCF Service Application project generates the following files:

Procedure 3 - Preparing To Use the Presentation Project

To prepare the use a WCF Service Application project, do the following:

  1. Modify the Web.config file.

  2. Perform custom programming, if required.

Modifying the Web.config File

The Web.config file comes configured with three bindings:

For information on the use of these bindings refer to Modifying the Web.config File.

Performing Custom Programming

When you create and build the project, ePortal Developer generates code to implement your service. Refer to Testing a Presentation Project for information for customizing this implementation.

Procedure 4 - Testing

Refer to Testing a Presentation Project.

Procedure 5 - Modifying the Service.svc File

When you build the solution, ePortal Developer sets the Service.svc file as the following example shows:

<%@ ServiceHost Language="C#" Debug="true" Service="WcfService1 . Service"
 Factory="ServiceFactory" CodeBehind="~/App_Code/Service.cs, WebSupport.dll" %>

Before you stage the Web site to ePortal, set the Debug option to False.

Next Step

Go to Staging a Presentation Project.