共计 1084 个字符,预计需要花费 3 分钟才能阅读完成。
近期有 Linux ASP.NET 用户反映,在 MVC 网站的 Web.config 中添加 httpHandlers 配置用于处理自定义类型,但是在运行中并没有产生预期的效果,服务器返回了 404(找不到网页)错误。经我亲自测试,在 WebForm 网站中,httpHandlers 节点的配置是有效的,而在 MVC 中的确无效。如果这个问题不能解决,将严重影响 Linux ASP.NET 的部署,也影响 WIN ASP.NET 向 Linux 迁移的兼容性和完整性。
造成 httpHandlers 无效的原因我并没有时间去深究,为了能够及时解决这个问题,我把注意力放到了 Global.asax 文件的 Application_BeginRequest 方法上,然后给出如下的解决方案。
一,在 global.asax 中添加一个静态方法:
static bool TryHanler<T>(string ext) where T : IHttpHandler
{
if (string.IsNullOrEmpty(ext)) return false;
var context = HttpContext.Current;
var path = context.Request.AppRelativeCurrentExecutionFilePath;
if (!path.EndsWith(ext)) return false;
var handle = Activator.CreateInstance(typeof(T)) as IHttpHandler;
if (handle == null) return false;
handle.ProcessRequest(context);
context.Response.End();
return true;
}
说明:这是一个泛型方法,T 代表你用于处理某个路径的继承自 IHttpHandler 的自定义类,参数 ext 是这个处理类所处理的请求路径的扩展名(含“.”号)。
二,在 global.asax 中实现 Application_BeginRequest 方法,并在该方法中调用 TryHandler。 如:
protected void Application_BeginRequest(object sender, EventArgs e)
{
if(TryHandler<myHandler>(“.do”)) return;
}
注:该处理方案具有通用性,能同时兼容 Windows IIS 和 Linux Jexus 或 XSP。
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-04/129779.htm