I am currently trying to add 301 redirect to my routes in MVC
to do this I have tried to inherit from the MvcHandler. The handler gets instantited with the right values. but I am never able to debug the overridden methods.
can someone show me a working attempt at this? the asp.net pipe simply seems to the doing its own thing...
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)
{
}
}
Update:
This is the solutions I found so far:
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);
}
}