试图为MvcHandler添加功能

时间:2010-05-15 18:43:21

标签: .net asp.net-mvc-2 c#-4.0

我目前正在尝试在MVC中添加301重定向到我的路线

要做到这一点,我试图从MvcHandler继承。 处理程序使用正确的值进行即时计算。但我永远无法调试重写的方法。

有人能告诉我这方面的工作尝试吗? asp.net管道似乎只是在做自己的事情......

public class CodeHttpHandler : MvcHandler
{
    public CodeHttpHandler(RequestContext p_requestContext)
            : base(p_requestContext)
    {
    }
    protected override void ProcessRequest(HttpContext p_httpContext)
    {
    }
    protected override void ProcessRequest(HttpContextBase p_httpContext)
    {
    }
}

更新:

这是我到目前为止找到的解决方案:

public class CodeRouteHandler : IRouteHandler
{
    public System.Web.IHttpHandler GetHttpHandler(RequestContext requestContext)
    {
        return new CodeHandler(requestContext);
    }
}

public class CodeRouteConstants
{
    public const string CODE = "code";
    public const string REDIRECT = "Redirect";
}

public class CodeHandler : MvcHandler
{
    public CodeHandler(RequestContext requestContext)
        : base(requestContext)
    {
    }

    private int? HandleCodedRoute(System.Web.HttpContextBase httpContext)
    {
        var context = httpContext.Request.RequestContext.RouteData;
        if (context.DataTokens.ContainsKey(CodeRouteConstants.CODE))
        {
            var statusCode = Int32.Parse(context.DataTokens[CodeRouteConstants.CODE] as string ?? "500");

            httpContext.Response.StatusCode = statusCode;

            if (context.DataTokens.ContainsKey(CodeRouteConstants.REDIRECT))
            {
                var redirectionMap = context.DataTokens[CodeRouteConstants.REDIRECT] as string ?? "404";

                foreach (var v in context.Values)
                {
                    redirectionMap = redirectionMap.Replace(string.Format("{{{0}}}", v.Key), v.Value as string);
                }

                httpContext.Response.AddHeader("Location", redirectionMap);
            }

            httpContext.Response.End();
            return statusCode;
        }
        return null;
    }

    protected override System.IAsyncResult BeginProcessRequest(System.Web.HttpContext httpContext, System.AsyncCallback callback, object state)
    {
        var statusCode = HandleCodedRoute(new HttpContextWrapper(httpContext));
        if (statusCode.HasValue)
        {
            return null;
        }
        return base.BeginProcessRequest(httpContext, callback, state);
    }

    protected override System.IAsyncResult BeginProcessRequest(System.Web.HttpContextBase httpContext, System.AsyncCallback callback, object state)
    {
        return base.BeginProcessRequest(httpContext, callback, state);
    }

    protected override void ProcessRequest(System.Web.HttpContext httpContext)
    {
        base.ProcessRequest(httpContext);
    }
    protected override void ProcessRequest(System.Web.HttpContextBase httpContext)
    {
        base.ProcessRequest(httpContext);
    }
}

1 个答案:

答案 0 :(得分:2)

嘿,我也遇到了这个问题。我在ProcessRequest()中的断点从未被击中。我没有完整的解决方案来解决你的问题,但我确实有一个解决方案可以让你得到你想要的东西。尝试从MvcHandler而不是ProcessRequest()重写BeginProcessRequest()方法。上下文应包含路由(动作和控制器)信息,如果这是您正在寻找的信息。