Customize HttpPipeline And Manage Exceptions Using IHttpActionInvoker In Web API

You have heard about exceptions and definitely confronted exceptions. If every system is healthy then it is of course good sign, however if it is error prone or exception prone then it's a little tough to manage business, and moreover, if the exception carries or brings lots of potential information and is promoted on the end user'sscreen then itdefinitely might be a big problem (exception always varies).

Sometimes it leads to trouble!

If I consider it,  there are generally two types of exceptions: First is business exception, and second is system exception. Business exception is when you are not allowed to perform certain actions like invalid user during payment. Card number provided in the system is wrong or invalid at the moment. While a system exception or critical exception is like network failure, and due to this the channel is broken and credentials or sensitive information may be revealed. Connectivity exceptions with database may have sensitive information.

Sometimes it has been noticed that system/application just returns complete StackTrace in response body which doesn’t look good because it may carry confidential information. Rather than making it public we should log it using Log4net(possible utilized tool).

One of the basic examples which may have lots of potential information and may not leak to the end customer until essential, it throws an exception as below:

  1. [HttpGet]  
  2. public HttpResponseMessageGetEmp(int id)  
  3. {  
  4.     if (id % 2 != 0)  
  5.     {  
  6.         throw new ApplicationException("Error thrown @ Controller level");  
  7.         //return new HttpResponseMessage(HttpStatusCode.NotAcceptable)  
  8.         //{  
  9.         // Content = new StringContent("Value sent as parameter doesn't accept criteria !!"),  
  10.         // ReasonPhrase = "Error"  
  11.         //};  
  12.     }  
  13. }  

Using Postman is shown below:

Postman

WebApi has one of the greaestt features with its release, it is the HttpResponseException class which helps you to add only header information and the status code (HttpStatusCode.NotAcceptable) passed as an argument to the HttpResponseMessage as shown below in sample code segment.

  1. [HttpGet]  
  2. public HttpResponseMessageGetEmp(int id)  
  3. {  
  4.     if (id % 2 != 0)  
  5.     {  
  6.         //throw new ApplicationException("Error thrown @ Controller level");  
  7.         return newHttpResponseMessage(HttpStatusCode.NotAcceptable) {  
  8.             Content = new StringContent("Value sent as parameter doesn't accept criteria !!"),  
  9.                 ReasonPhrase = "Error"  
  10.         };  
  11.     } else  
  12.     {  
  13.         return newHttpResponseMessage(HttpStatusCode.Accepted) {  
  14.             Content = new StringContent("Value sent as parameter accepted at controller level !!"),  
  15.                 ReasonPhrase = "Accepted"  
  16.         };  
  17.     }  
  18. }  

The above code segment is one of the possible ways to handle exceptions at controller level. But you may confront a situation where a programmer would be happy to manage it at a centralized or global place at application level to reduce/mitigate code redundancy.

Here, I found it at HttpPipeLine level using IHttpActionInvoker which is also responsible for invoking controller’s action. The Action Invoker invokes the Controller Action and we can have custom implementation for this also. To achieve this you just need to replace the existing default action invoker; here I’ve just written a code segment to manage exception.

Action Invoker Execution process:

Step1. For this purpose, I’ve added a class Custom_ControllerActionInvoker.cs in solution with name as in the following screenshot,

solution

Step 2: Code to manage exception at ActionInvokerlevel.

  1. public class Custom_ControllerActionInvoker: ApiControllerActionInvoker  
  2. {  
  3.     public override System.Threading.Tasks.Task < System.Net.Http.HttpResponseMessage > InvokeActionAsync(HttpActionContextactionContext, System.Threading.CancellationTokencancellationToken) {  
  4.         var objResult = base.InvokeActionAsync(actionContext, cancellationToken);  
  5.         if (objResult.Exception != null)  
  6.         {  
  7.             Debug.WriteLine("Exception thrwon by controller {0} :", actionContext.ControllerContext.Controller);  
  8.             returnTask.Run < HttpResponseMessage > (() => newHttpResponseMessage(HttpStatusCode.InternalServerError));  
  9.         }  
  10.         elseif(objResult.Result.StatusCode == HttpStatusCode.Forbidden)   
  11.         {  
  12.             //Log critical error  
  13.             Debug.WriteLine("Exception thrwon by controller {0} :", actionContext.ControllerContext.Controller);  
  14.             returnTask.Run < HttpResponseMessage > (() => newHttpResponseMessage(objResult.Result.StatusCode));  
  15.         }  
  16.         return objResult;  
  17.     }  
  18. }  

code

Step 3: Register an Action Invoker in Global.asax to replace the default execution.

GlobalConfiguration.Configuration.Services.Replace (typeof (IHttpActionInvoker), newCustom_ControllerActionInvoker());

Press F5 and run Web API application. The following window will appear and ensure that Web API is running.

webapi

Send the Get request in order to verify the execution cycle as given below. Copy and paste the following Url (http://localhost:57888/api/employees/GetEmp/5) in PostMan tool as depicted in the following screenshot,

tool

tool

Later, It will go to desired controller’s action and return HttpResponseException as shown below:

controller

Output will be as here:

output

This is how we can manage exception at ActionInvoker level and customize WebApi HttpPipeLine. Please must read wrapping up section below.

wrap it up


One of the best benefits of IHttpActionInvoker which I understood and gathered is that it provides you liberty to store the real runtime type of the response object in the actionContext.Request.Properties[
"RuntimeReturnType"] = objResult.GetType(); so you may utilize it later. Also you can control exceptions from single place as per the HttpResponse return by specific action. There are few other objects in WebApi Pipeline where you can fit custom exception handling like: ExceptionFilterAttributeandDelegateHanlderMessageHanlder and other is IHttpCustomInvoker.

Read more articles on ASP.NET:


Similar Articles