Quantcast
Channel: Rob Sanders: Sanders Technology » .Net 4.0
Viewing all articles
Browse latest Browse all 3

Common Functionality across WCF Web Service Operations

$
0
0
Introduction Recently, I started building up a WCF Service Application from scratch to implement a specific set of operations from an existing WSDL. This was a little cumbersome, but gave me an excellent opportunity to extend and play around with a concept I’ve been trying to perfect for a couple of years now.  In a nutshell, what I wanted was the ability to just focus on implementing the specific functionality of a Web Service operation, yet reuse common validation, logging and exception handling. This required each web service to inherit from a common base class.  Each request is a class which inherits from a base class also (containing properties which are required for every request). Class Object View Let’s take a look at my web service: As you can see, the FormsManager class derives from the obviously named ServiceBase.  Now, as I stated previously, my intention was to move as much “common functionality” into the base as possible.  To do this, let’s take a look at one of the operations: A Sample Web Service Operation /// /// Submit a form (i.e. lodge a form) /// /// /// public SubmitFormResponse SubmitForm(SubmitFormRequest request) { return base.ExecuteRequest<SubmitFormRequest, SubmitFormResponse> (request, delegate { AuthoriseAccountId(request.AccountId, request.FormType, […]

Viewing all articles
Browse latest Browse all 3

Trending Articles