Click here to Skip to main content
15,889,808 members
Articles / Programming Languages / C# 4.0

REST Technobabble

Rate me:
Please Sign up or sign in to vote.
4.64/5 (8 votes)
10 May 2011BSD7 min read 66.1K   53   15
REST Web Service and template with separation of concerns

Jump to Integration with Visual Studio

Introduction

For most developers, Visual Studio is the best tool for the job. And due to a variety of factors, it is also often the only one. It comes with a plethora of project templates to get a developer started or to aid a seasoned professional. Regrettably, the templates are often oversimplified samples that end up in the real products for the mere fact that they were the default, not because they suited the problem at hand.

This article details how to implement a Web Service, but with a better project structure, reduced coupling between components, and separation between interface definitions and their implementation. And last but not least, a new template is provided to fossilize these newly found principals.

Background

For illustration purposes, the article is structured around a phantom Web Service built atop of WCF. The service exposes a collection of resources through REST, which in turn can be hosted in IIS or standalone. Also, a sample web client application is included, as well as unit test for the core logic.

The notion of separating software projects into layers has been around for a while, but still, there seems to be a lot of confusion on terminology and techniques. Particularly, such discussion(s) often intermix tier separation and software layers, hence an introductory article "Pragmatic Architecture: Layering" by Ted Neward is recommended.

Web Service -- The 'REST Technobabble'

Software development is filled with new technology and new terminology, often for the same or even older technology, but in any case, there is plenty of technobabble involved. And in the case of this article, the Web Service actually manages a collection of REST technobabble phrases. A client of this Web Service can request a list of [latest] technobabble phrases, add new ones, modify existing, etc. (i.e., CRUD support).

Projects

Projects

For starters, let's review the projects involved and the way in which they are organized in the Visual Studio solution. Next to this paragraph is a snapshot of Solution Explorer, which shows several solution folders and corresponding projects. The solution folders correspond to layers, which are described later.

The key points about solution folders and projects are:

  • Solution folders are prefixed with a two digit number (e.g., 10, 20) for ordering purposes.
  • Project compilation is (still) controlled by project dependencies settings.
  • Project/layer dependencies are visually conveyed to the developer.
  • Projects at the top depend on lower [layer] projects.

Layers

Layers

The diagram next to this paragraph shows the Web Service, its contract, hosting, and client(s) are allocated to different layers. Arrows on the diagram show compile time dependencies between the different layers.

Layer descriptions:

  • Data Layer -- abstraction of the persistent storage*
  • Core -- the core logic of the implementation
  • Web Services -- wrapper around the Core
  • Host -- hosting of the Web Service (i.e., IIS hosting or standalone)
  • Client -- the client application(s)

*Note: To limit the scope of this Web Service project, information is stored in memory and the corresponding logic is not factored out into a separate data layer.

Key points on the diagram for the layers and their dependencies:

  • Compile time dependencies are shown as arrows.
  • Higher layers depend on lower layers (and not vice versa).
  • Client layer depends only on the contracts and not on the implementation layers.

Assemblies

Assemblies

The next diagram shows dependencies for the assemblies produced by the above projects. The diagram is produced by Visual Studio, and provides another confirmation that the layer dependencies have been observed. An interesting feature is that Visual Studio can also check these dependencies against the one specified in the layer diagram (above) and inform when an incorrect dependency has been added.

The key points on the diagram are:

  • Client side assemblies depend only on the definition of the contracts
  • Number of assemblies deployed on the client is smaller (hence smaller deployment size)
  • Corrections in service implementation can be implemented without redeployment of the client assemblies
  • Multiple clients (i.e. WebApp and WebMVC3) are build based only on the contract definition

Running the Sample

Now that you've read a lot of technobabble from the previous section, it may be interesting to see what the running Web Service looks like.

For demo purposes, I implemented the client to the Web Service as (another) web application that consumes and allows to manipulate the technobabble phrases (after all, technobabble is always evolving).

All projects have corresponding dependencies set up and hence the Build&Run of Client.WebApp project shall be sufficient. Otherwise, you can Build&Run the Host.WebApp project followed by (Build&Run) of the Client.WebApp project.

REST Technobabble web client snapshot

REST api snapshot

Benefits

The most obvious difference when compared to the Visual Studio default WCF/REST template and the one shown here is the number of projects involved. But is it actually better?

Well, the answer is the venerable: "It depends", but here are some beneficial aspects of this approach:

  • Separation of concerns -- Each project is focused on a smaller more specific task.
  • Client side assemblies depend only on the definition of the contracts and hence no implementation assemblies need to be deployed to the client side.
  • Number of assemblies deployed on a client is reduced (hence smaller deployment size).
  • Corrections in service implementation can be implemented without redeployment of the client assemblies.
  • Much easier implementation of unit test(s) for the functionality in the Core layer.
  • Easier to address different API semantics (example: stateless aspect of REST vs. stateful usage on the internal API exposed by the Core layer).
  • Web and Host projects can focus on their targets which are very technology specific and rapidly change over time.

All of the above seem more than fair benefit to have more granular projects.

Unit Test

As mentioned above, the Core layer can follow much simpler development practices. Because it has limited dependency on the deployment infrastructure, the unit test for it can be implemented much easier. Especially when compared to the system/integration level testing required when Client and Web Services are involved.

Unit test results

Additionally, the Web and Host projects can focus on their targets which are very technology specific and rapidly change over time. Today, the services are implemented with WCF and hosted in IIS through an ASP.NET project or a standalone executable; tomorrow it could be a Windows(R) Service or yet something else.

Points of Interest

Even in this simple example, the separation allows to address the difference in semantics much easier. For example, the service is exposed through REST and implemented though the .NET WebGet attribute. This adds the restriction that only string parameters will be parsed from the URI (behavior of the WebGet implementation) and that consecutive identical calls to delete a resource is not an error condition (which it is in general procedural programming).

Integration with Visual Studio

And in conclusion to the best part: all of the above can be reasonably reused though a new Visual Studio template. To install the template, you can navigate to the Visual Studio Gallery, or even simpler, use Visual Studio to install it:

  1. Open the new project dialog in Visual Studio.
  2. Type in the search term: "structured".
  3. Select the "Structured WCF REST Service" item, and proceed with the wizard.

If everything works, you should see a dialog as the one shown below:

Visual studio install

Source Code

The source code can now be accessed at github:

References

Volumes of information regarding application/presentation split and the corresponding presentation/business logic/data access tiers are available -- in fact, too many to list here. Nevertheless, practical advise is rare. The following references were used for this article:

History

  • Version 1.2: Addition of ASP.NET MVC3 client project
  • Article update: Published template source
  • Version 1.1: Console hosting application update
  • Version 1.0: Initial release

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNice work! Pin
KevinEarley26-Jul-12 5:10
KevinEarley26-Jul-12 5:10 
GeneralRe: Nice work! Pin
Igor Okulist2-Aug-12 5:30
Igor Okulist2-Aug-12 5:30 
GeneralMy vote of 5 Pin
Ted Morris15-Apr-11 7:30
Ted Morris15-Apr-11 7:30 
GeneralData contracts versus data in the web contract and data in the core contract Pin
Asghar Panahy13-Apr-11 22:35
Asghar Panahy13-Apr-11 22:35 
GeneralRe: Data contracts versus data in the web contract and data in the core contract [modified] Pin
Igor Okulist14-Apr-11 6:47
Igor Okulist14-Apr-11 6:47 
GeneralMy vote of 5 Pin
Asghar Panahy13-Apr-11 22:14
Asghar Panahy13-Apr-11 22:14 
GeneralUsing your template Pin
Member 24794521-Apr-11 0:41
Member 24794521-Apr-11 0:41 
GeneralData layer Pin
Member 476972522-Dec-10 5:23
Member 476972522-Dec-10 5:23 
GeneralRe: Data layer Pin
Igor Okulist6-Jan-11 7:37
Igor Okulist6-Jan-11 7:37 
GeneralRe: Data layer Pin
xavierx_h18-Jan-11 12:48
xavierx_h18-Jan-11 12:48 
GeneralRe: Data layer Pin
Igor Okulist20-Jan-11 8:52
Igor Okulist20-Jan-11 8:52 
GeneralInteresting Pin
Jaime Olivares20-Sep-10 15:24
Jaime Olivares20-Sep-10 15:24 
I like how the dependencies have been handled with care.
Every service project should start with this analysis Wink | ;)
Best regards,
Jaime.

QuestionSorry confused where is source code? Pin
Sacha Barber6-Sep-10 21:37
Sacha Barber6-Sep-10 21:37 
AnswerRe: Sorry confused where is source code? Pin
Eric Xue (brokensnow)6-Sep-10 23:17
Eric Xue (brokensnow)6-Sep-10 23:17 
AnswerRe: Sorry confused where is source code? Pin
Igor Okulist7-Sep-10 19:46
Igor Okulist7-Sep-10 19:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.