Introduction:
Building modern HTTP/RESTful/RPC
services has become very easy with the new ASP.NET Web API framework.
Using ASP.NET Web API framework, you can create HTTP services which can
be accessed from browsers, machines, mobile devices and other
clients. Developing HTTP services is now become more easy for ASP.NET
MVC developer becasue ASP.NET Web API is now included in ASP.NET MVC. In
addition to developing HTTP services, it is also important to return
meaningful response to client if a resource(uri) not found(HTTP 404) for
a reason(for example, mistyped resource uri). It is also important to
make this response centralized so you can configure all of 'HTTP 404 Not
Found' resource at one place. In this article, I will show you how
to handle 'HTTP 404 Not Found' at one place.
Description:
Let's say that you are developing
a HTTP RESTful application using ASP.NET Web API framework. In this
application you need to handle HTTP 404 errors in a centralized
location. From ASP.NET Web API point of you, you need to handle these
situations,
- No route matched.
- Route is matched but no {controller} has been found on route.
- No type with {controller} name has been found.
- No matching action method found in the selected controller due to no
action method start with the request HTTP method verb or no action
method with IActionHttpMethodProviderRoute implemented attribute found
or no method with {action} name found or no method with the matching
{action} name found.
Now, let create a ErrorController with Handle404
action method. This action method will be used in all of the above
cases for sending HTTP 404 response message to the client.
01 |
public class ErrorController : ApiController |
03 |
[HttpGet, HttpPost, HttpPut, HttpDelete, HttpHead, HttpOptions, AcceptVerbs( "PATCH" )] |
04 |
public HttpResponseMessage Handle404() |
06 |
var responseMessage = new HttpResponseMessage(HttpStatusCode.NotFound); |
07 |
responseMessage.ReasonPhrase = "The requested resource is not found" ; |
08 |
return responseMessage; |
You can easily change the above
action method to send some other specific HTTP 404 error response. If a
client of your HTTP service send a request to a resource(uri) and no
route matched with this uri on server then you can route the request to
the above Handle404 method using a custom route. Put this route at the
very bottom of route configuration,
3 |
routeTemplate: "{*url}" , |
4 |
defaults: new { controller = "Error" , action = "Handle404" } |
Now you need handle the case when there is no
{controller} in the matching route or when there is no type with
{controller} name found. You can easily handle this case and route the
request to the above Handle404 method using a custom
IHttpControllerSelector. Here is the definition of a custom
IHttpControllerSelector,
01 |
public class HttpNotFoundAwareDefaultHttpControllerSelector : DefaultHttpControllerSelector |
03 |
public HttpNotFoundAwareDefaultHttpControllerSelector(HttpConfiguration configuration) |
07 |
public override HttpControllerDescriptor SelectController(HttpRequestMessage request) |
09 |
HttpControllerDescriptor decriptor = null ; |
12 |
decriptor = base .SelectController(request); |
14 |
catch (HttpResponseException ex) |
16 |
var code = ex.Response.StatusCode; |
17 |
if (code != HttpStatusCode.NotFound) |
19 |
var routeValues = request.GetRouteData().Values; |
20 |
routeValues[ "controller" ] = "Error" ; |
21 |
routeValues[ "action" ] = "Handle404" ; |
22 |
decriptor = base .SelectController(request); |
Next, it is also required to pass the request to
the above Handle404 method if no matching action method found in the
selected controller due to the reason discussed above. This situation
can also be easily handled through a custom IHttpActionSelector. Here is
the source of custom IHttpActionSelector,
01 |
public class HttpNotFoundAwareControllerActionSelector : ApiControllerActionSelector |
03 |
public HttpNotFoundAwareControllerActionSelector() |
07 |
public override HttpActionDescriptor SelectAction(HttpControllerContext controllerContext) |
09 |
HttpActionDescriptor decriptor = null ; |
12 |
decriptor = base .SelectAction(controllerContext); |
14 |
catch (HttpResponseException ex) |
16 |
var code = ex.Response.StatusCode; |
17 |
if (code != HttpStatusCode.NotFound && code != HttpStatusCode.MethodNotAllowed) |
19 |
var routeData = controllerContext.RouteData; |
20 |
routeData.Values[ "action" ] = "Handle404" ; |
21 |
IHttpController httpController = new ErrorController(); |
22 |
controllerContext.Controller = httpController; |
23 |
controllerContext.ControllerDescriptor = new HttpControllerDescriptor(controllerContext.Configuration, "Error" , httpController.GetType()); |
24 |
decriptor = base .SelectAction(controllerContext); |
Finally, we need to register the custom
IHttpControllerSelector and IHttpActionSelector. Open global.asax.cs
file and add these lines,
1 |
configuration.Services.Replace( typeof (IHttpControllerSelector), new HttpNotFoundAwareDefaultHttpControllerSelector(configuration)); |
2 |
configuration.Services.Replace( typeof (IHttpActionSelector), new HttpNotFoundAwareControllerActionSelector()); |
Summary:
In addition to building an
application for HTTP services, it is also important to send
meaningful centralized information in response when something goes
wrong, for example 'HTTP 404 Not Found' error. In this article, I
showed you how to handle 'HTTP 404 Not Found' error in a centralized
location. Hopefully you will enjoy this article too.
- Global Error Handling in ASP.NET Web API 2(webapi2 中的全局异常处理)
目前,在Web API中没有简单的方法来记录或处理全局异常(webapi1中).一些未处理的异常可以通过exception filters进行处理,但是有许多情况exception filters无法 ...
- Exception Handling in ASP.NET Web API webapi异常处理
原文:http://www.asp.net/web-api/overview/error-handling/exception-handling This article describes erro ...
- Exception Handling in ASP.NET Web API
public static void RegisterGlobalFilters(GlobalFilterCollection filters) { filters.Add(new HandleErr ...
- Asp.net web api部署在某些服务器上老是404
asp.net web api部署在Windows服务器上后,按照WebAPI定义的路由访问,老是出现404,但定义一个静态文件从站点访问,却又OK. 这时,便可以确定是WebAPI路由出了问题,经调 ...
- "Asp.Net Web Api MediaTypeFormatter Error for x-www-formurlencoded data" 解决方法
遇到标题中所说的问题原因是使用 jQuery AJAX 以 POST 方式调用 Asp.Net Web API .解决办法请看以下代码中有注释的部分. public static class WebA ...
- 【ASP.NET Web API教程】4.3 ASP.NET Web API中的异常处理
原文:[ASP.NET Web API教程]4.3 ASP.NET Web API中的异常处理 注:本文是[ASP.NET Web API系列教程]的一部分,如果您是第一次看本系列教程,请先看前面的内 ...
- Professional C# 6 and .NET Core 1.0 - Chapter 42 ASP.NET Web API
本文内容为转载,重新排版以供学习研究.如有侵权,请联系作者删除. 转载请注明本文出处: -------------------------------------------------------- ...
- 初试ASP.NET Web API/MVC API(附Demo)
写在前面 HTTP RESTful 创建Web API 调用Web API 运行截图及Demo下载 ASP.NET Web API是一个框架,可以很容易构建达成了广泛的HTTP服务客户端,包括浏览 ...
- ASP.NET Web API 异常日志记录
如果在 ASP.NET MVC 应用程序中记录异常信息,我们只需要在 Global.asax 的 Application_Error 中添加代码就可以了,比如: public class MvcApp ...
随机推荐
- .NET复习笔记
.NET 基础知识点汇总 课前知识储备. 一.C#与.NET的区别? 1..NET/dotnet:一般指.Net Framework框架,一种平台,一种技术 2.C#(sharp):一种编程语言,可以 ...
- TopCoder 603 div1 & div2
div2 250pts MiddleCode 题意:s串长度为奇数时,将中间字符取掉并添加到t末尾:长度为偶数时,将中间两个较小的字符取掉并添加到末尾. 分析:直接做,学习了一下substr(s, p ...
- 使用预处理PreparedStatement执行Sql语句
/** * 使用预处理的方式执行Sql * @param sql Sql语句 * @param obj 变量值数组 * @return 查询结果 * @throws SQLException */ p ...
- 套题T1
间隙妖怪(gap.cpp/c/pas) 题目描述: 八云紫是幻想乡的间隙妖怪.她喜欢和八云橙玩一个叫做翻转的游戏.具体规则如下,八云紫对一个长度为N字符串做M次翻转操作,每次操作给定一个X,八云紫将X ...
- lintcode 中等题:A + B Problem A + B 问题
题目: 中等 A + B 问题 给出两个整数a和b, 求他们的和, 但不能使用 + 等数学运算符. 如果 a=1 并且 b=2,返回3 注意 你不需要从输入流读入数据,只需要根据aplusb的两个参数 ...
- 被忽略却很有用的html标签
<base>标签 作用:标签为页面中所有链接指定默认链接地址或链接目标.有时候我们需要让首页的链接全部在新窗口中打开,我们一般会这样写链接,而使用这个标签就能一下搞定了! 属性:Href ...
- 【转】Windows Server 2008修改远程桌面连接数
按照下面的设置是成功了的,我设置的连接数是5个. http://jingyan.baidu.com/article/154b463150d1b128ca8f4194.html
- iOS 越狱机免证书调试
目前在XCode上开发的iOS程序只能在模拟器Simulator中运行,如果要放到真机上测试,需要苹果官方认证的开发者账号,购买开发者证书iDP,99美金一年啊! 作为刚开始学习iOS编程的菜鸟,这么 ...
- 学习webView控件使用
WebView 对象用于网页显示使用,简单的学习并使用了一下. 1.首先在 layout 中摆一个全屏的 webview 控件 (main.xml ) <?xml version="1 ...
- px,dp,sp单位转换工具类
在layout中使用dp 在代码中getWidth系列得到的是px 设置字体大小时使用的是sp /** * Android大小单位转换工具类 */ public class PxDpSpUtil { ...