WCF Math Service Library with Multi-Threaded Capabilities & Console Service Host and a Client “Tester” ChannelFactory Implementation

About

This project presents a WCF Service Library (MathServiceLib) that consists of a math library that contains complex, long-running methods. This WCF Math Service and Client demonstrates multi-threaded access with various combinations of instance context modes and concurrency levels. The client accesses these methods using sequential and multi-threaded techniques to demonstrate the difference in performance.

The service is hosted via a console application (MathServiceHost). The client (MathClient) uses the ChannelFactory pattern as opposed to “Add Service Reference” with SVCUTIL. The client and service share a common assembly (SharedLib) that contains the key contract and data model information.

Furthermore, a Utilities project is used by the client console application to facilitate user data entry and the complicated details of building and managing the WCF ChannelFactory connection implementation. The ProxyGen class inside the Utilities project abstracts the details of implementing and managing a generic ChannelFactory connection to a generic service for a client. Note: The Utilities project library was included as base code for my lab project to facilitate speedy completion; we were not expected to code this Utilities project ourselves due to complexity and time constraints. The remaining projects in the solution (SharedLib, MathClient, MathServiceHost, and MathServiceLib), I completed individually per requirements for the lab project.

Architecture

The MathService Visual Studio solution application consists of five project assemblies:

  • SharedLib (Class Library) “Service and Data Contracts”
  • MathServiceLib (WCF Service Library) “Implements the Service”
  • MathServiceHost (Console Application) “Hosts the Service”
  • MathClient (Console Application) “Client Tester to Service”
  • Utilities (Class Library) “Helper classes”

SharedLib

This library project contains the service contract required by this service. You can see the project code here.

Service and Operations Contract

There is only one service interface defined: IMathService (interface for the client calling the service). You can see the IMathService code here has two operational contracts.

MathServiceLib

MathServiceLib contains the service code that implements the IMathService interface. It has a project reference to SharedLib. Click here to see the project code.

MathService Class

This class implements the IMathService interface and has the ServiceBehavior attribute applied to it. The ServiceBehavior attribute has its InstanceContextMode property set to InstanceContextMode.PerCall to ensure each client call will receive a new service instance. In addition, the ConcurrencyMode property was initially set to ConcurrencyMode.Single. The testing procedure (later in this article) shows how changing these settings affects the solution performance results. Note: The InstanceContextMode set to PerCall ensures each client call will receive a new service instance while the ConcurrencyMode controls multi-threading access (Single is for Single Thread, Multiple = Multi-threading).

Sqrt(BigInteger value)

The Sqrt method calculates the approximate square root for an arbitrarily large integer value. By the way, that is what BigInteger provides – a data structure to hold numbers far larger that can be stored in traditional data types. Since the method uses the Math library, it is only going to be as precise as a double.

IsPrime(BigInteger value)

The IsPrime method uses a brute force (slow) algorithm to determine if a number is prime. There are some optimizations built in that eliminate Prime numbers.

MathServiceHost

The MathServiceHost is a typical Console Application used to host the MathService service class. For the hosting configuration, I used the basicHttp protocol. The <system.serviceModel> portion of the config file was customized to the solution address, bindings, and contract. See the XML configuration here and project code here.

MathClient “Tester Client Console Application”

The math client project is a Console Application that consumes the service through a ChannelFactory pattern with the IMathService interface. This client program demonstrates multi-threaded access with various combinations of instance context modes and concurrency levels. The client accesses these methods using sequential and multi-threaded techniques to demonstrate the difference in performance. The goal of this client is to test a batch of calls to the service using a traditional sequential loop and a parallelized loop. Results of the performance tests are printed to the console window. You can see the project code here.

Class Fields

The Program class will have several fields:

m_Proxy is the proxy object that connects to the service.

m_Tests holds the number of iterations to perform per test.

m_StartNum holds the initial number to use in each loop when calculating square roots.

Class Methods

The Program class contains three static methods: Main, TestSync, and TestAsync.

Static TimeSpan TestSync()

The TestSync method calls the service method IsPrime in a synchronous manner. It iterates for a set number of times, adding one to the original number and determining if that number if prime or not. The method accepts no parameters and returns a TimeSpan object which will contain the total time spent in the method.

Static TimeSpan TestAsync()

The TestAsync method does the same thing as TestSync except it will use a Parallel.For loop to call the service method from the thread pool.

Static Void Main()

Firstly, the client proxy channel to the service, m_Proxy, is initialized using the Utilities project (helper classes) for creating and managing a ChannelFactory pattern connection.

The console application then asks the user to enter new values for m_Tests (number of iterations to perform per test) and m_StartNum (the initial number to use in each loop when calculating square roots). This helps the program stay flexible for testing various ranges and values.

To ensure that both synchronous and asynchronous tests are treated “equally”, a quick call to the service is made to “spin it up”. That way when the tests are executed there is no initial delay with one of them starting the service for the first time.

Next, calls to both the TestSync and TestAsync methods are made. Their results are the performance of the methods executing either in synchronous or asynchronous mode. The results stored in two different TimeSpan objects.

Finally, the console program outputs to the user the TotalSeconds value from each of the TimeSpan objects with an appropriate header for each. The user can then see the apparent difference in performance between the synchronous and asynchronous calls, if any.

Configuration

The client app.config file was updated with the correct serviceModel configuration. See the XML configuration file here.

Utilities

Furthermore a “Utilities” project is used by the client console application to facilitate user data entry and the complicated details of building and managing the WCF ChannelFactory connection implementation. The “ProxyGen” class inside the Utilities project abstracts the details of implementing and managing a generic ChannelFactory connection to a generic service for a client. Note: The Utilities library was included as base code for my lab project to facilitate my speedy completion; we were not expected to code this ourselves due to complexity and time constraints. The remaining projects in the solution (SharedLib, MathClient, MathServiceHost, and MathServiceLib), I completed individually per requirements for the lab project. Click here to see the Utilities code.

Testing the Service Performance

The table below presents test results for running the service with different parameters. The InstanceContextMode on the service was set to InstanceContextMode.PerCall to ensure each client call will receive a new service instance. Next, the test was run either with the service ConcurrencyMode marked either as Single (not capable of multi-threaded) or Multiple (multi-threaded capable). Lastly, two additional service throttling behavior configurations were investigated: Max Concurrent Calls and Max Concurrent instances that were set via the App.config file for the MathServiceLib (project that implements the service). These two options limited or “throttle” the traffic flow on the service.

You can learn more about using ServiceThrottlingBehavior to control WCF Service performance here.

Test # Concurrency Mode Max Concurrent Calls Max Concurrent Instances Synchronous Time (s) Asynchronous Time (s)
1 Single 1 1 3.6730896 2.1295461
2 Single 32 1 3.6387005 3.6763575
3 Single 1 32 3.4806736 2.5274937
4 Single 32 32 3.6317309 2.1659241
5 Multiple 1 1 3.8977416 2.4638978
6 Multiple 32 1 3.605695 3.2594351
7 Multiple 1 32 3.9397821 2.4087341
8 Multiple 32 32 3.6924219 2.1606021
9 Multiple 50 50 4.1900246 2.2309672
10 Multiple 100 50 3.5920948 2.4304164
11 Multiple 50 100 4.1737997 2.2857008
12 Multiple 100 100 3.4416575 2.2056694

Demo

Code

The entire project code repository is available on GitHub here.

Kathleen has 15 yrs. of experience analyzing business IT needs and engineering solutions in payments, electric utilities, pharmaceutical, financial, virtual reality, and internet industries with a variety of technologies. Kathleen's project experience has been diverse ranging from executing the business analysis “design phase” to hands-on development, implementation, and testing of the IT solutions. Kathleen and her husband reside in Indiana with no children, instead living along with their fur babies.