4

我正在尝试为我的 ASP.NET MVC 5 项目设置一些路由。

  • 我定义了自定义路由来获得不错的博客文章永久链接——这些似乎工作正常
  • 我添加了一个 XmlRpc 处理程序(类似于在Mads 的 MiniblogScott 的帖子中的处理方式)

现在我有一些奇怪的行为:

  • /Home/About路由正确
  • /Home/Index被路由到/XmlRpc?action=Index&controller=Blog
  • /HOme/Index有效(是的,我发现这是由于拼写错误)——我一直认为路线不区分大小写?
  • 使用Url.Action("Foo","Bar")也会创建/XmlRpc?action=Foo&controller=Bar

这是我的RouteConfig文件:

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.Add("XmlRpc", new Route("XmlRpc", new MetaWeblogRouteHandler()));

    routes.MapRoute("Post", "Post/{year}/{month}/{day}/{id}", new {controller = "Blog", action = "Post"}, new {year = @"\d{4,4}", month = @"\d{1,2}", day = @"\d{1,2}", id = @"(\w+-?)*"});
    routes.MapRoute("Posts on Day", "Post/{year}/{month}/{day}", new {controller = "Blog", action = "PostsOnDay"}, new {year = @"\d{4,4}", month = @"\d{1,2}", day = @"\d{1,2}"});
    routes.MapRoute("Posts in Month", "Post/{year}/{month}", new {controller = "Blog", action = "PostsInMonth"}, new {year = @"\d{4,4}", month = @"\d{1,2"});
    routes.MapRoute("Posts in Year", "Post/{year}", new {controller = "Blog", action = "PostsInYear"}, new {year = @"\d{4,4}"});
    routes.MapRoute("Post List Pages", "Page/{page}", new {controller = "Blog", action = "Index"}, new {page = @"\d{1,6}"});
    routes.MapRoute("Posts by Tag", "Tag/{tag}", new {controller = "Blog", action = "PostsByTag"}, new {id = @"(\w+-?)*"});
    routes.MapRoute("Posts by Category", "Category/{category}", new {controller = "Blog", action = "PostsByCategory"}, new {id = @"(\w+-?)*"});

    routes.MapRoute("Default", "{controller}/{action}/{id}", new {controller = "Blog", action = "Index", id = UrlParameter.Optional});            
}

这就是 的定义MetaWeblogRouteHandler

public class MetaWeblogRouteHandler : IRouteHandler
{
    public IHttpHandler GetHttpHandler(RequestContext requestContext)
    {
        return new MetaWeblog();
    }
}

基本上我想要通常的 ASP.NET MVC 路由行为 (/controller/action) + 我为永久链接定义的自定义路由 + 通过 XmlRpc 处理程序仅在 /XmlRpc 处理 XML-RPC。

由于参数与路由中定义的参数相同,Default我尝试删除路由,但没有成功。
有任何想法吗?

更新:
调用时/Home/Index设置AppRelativeCurrentExecutionFilePath合法"~/XmlRpc"选择XmlRpc 路由。请求似乎有什么问题?

更新 2 :除了一种情况外,问题都解决了:当通过 Visual Studio 启动 IE 进行调试时,它仍然失败。在其他所有情况下,它现在都可以工作(是的,我检查了浏览器缓存,甚至在另一台机器上尝试过,以确保;IE 从 VS = 失败开始,所有其他组合都很好)。无论如何,因为它现在适用于最终用户,所以我暂时感到满意;)

4

1 回答 1

5

当您执行时Url.Action("Foo","Bar"),MVC 将从您的输入中创建一组路由值(在这种情况下,action=Foo,controller=Bar),然后它会查看您的路由,尝试根据其段和默认值匹配一个匹配的路由。

您的 XmlRpc 路由没有段,也没有默认值,并且是第一个定义的。@Url.Action这意味着在使用等生成 url 时,它将始终是第一个匹配项@Html.ActionLink

在生成 url 时防止该路由匹配的一种快速方法是添加默认控制器参数(使用您确定永远不会使用的控制器名称)。例如:

routes.Add("XmlRpc", new Route("XmlRpc", new RouteValueDictionary() { { "controller", "XmlRpc" } }, new MetaWeblogRouteHandler())); 

现在,当您执行时Url.Action("Foo","Bar"),您将获得预期的/Bar/Foourl,因为“Bar”与路由定义中的默认控制器值“XmlRpc”不匹配。

然而,这似乎有点hacky。

更好的选择是创建自己的RouteBase课程。这将只关心 url /XmlRpc,然后MetaWeblogRouteHandler使用 Html 和 Url 帮助器生成链接时将使用它提供服务并将被忽略:

public class XmlRpcRoute : RouteBase
{
    public override RouteData GetRouteData(HttpContextBase httpContext)
    {
        //The route will only be a match when requesting the url ~/XmlRpc, and in that case the MetaWeblogRouteHandler will handle the request
        if (httpContext.Request.AppRelativeCurrentExecutionFilePath.Equals("~/XmlRpc", StringComparison.CurrentCultureIgnoreCase))
            return new RouteData(this, new MetaWeblogRouteHandler());

        //If url is other than /XmlRpc, return null so MVC keeps looking at the other routes
        return null;
    }

    public override VirtualPathData GetVirtualPath(RequestContext requestContext, RouteValueDictionary values)
    {            
        //return null, so this route is skipped by MVC when generating outgoing Urls (as in @Url.Action and @Html.ActionLink)
        return null;
    }
}

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    //Add the route using our custom XmlRpcRoute class
    routes.Add("XmlRpc", new XmlRpcRoute());

    ... your other routes ...
}

但是,最后您创建的路由只是为了IHttpHandler在 MVC 流之外运行单个 url。您甚至在努力防止该路由干扰其他 MVC 组件,例如在使用帮助程序生成 url 时。

然后,您可以直接在 web.config 文件中为该模块添加一个处理程序,同时/XmlRpc在您的 MVC 路由中添加一个忽略规则:

<configuration>
  ...
  <system.webServer>
    <handlers>
      <!-- Make sure to update the namespace "WebApplication1.Blog" to whatever your namespace is-->
      <add name="MetaWebLogHandler" verb="POST,GET" type="WebApplication1.Blog.MetaWeblogHandler" path="/XmlRpc" />
    </handlers>
  </system.webServer>
</configuration>

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    //Make sure MVC ignores /XmlRpc, which will be directly handled by MetaWeblogHandler
    routes.IgnoreRoute("XmlRpc");

    ... your other routes ...         
}

使用这三种方法中的任何一种,这就是我得到的:

  • /Home/Index呈现索引视图HomeController

  • /呈现索引视图BlogController

  • @Url.Action("Foo","Bar")生成网址/Bar/Foo

  • @Html.ActionLink("MyLink","Foo","Bar")呈现以下 html:<a href="/Bar/Foo">MyLink</a>

  • /XmlRcp呈现描述 MetaWeblogHandler 及其可用方法的视图,其中有一个可用方法(blog.index,不带参数并返回字符串)


为了对此进行测试,我创建了一个新的空 MVC 5 应用程序,添加了 NuGet 包xmlrpcnet-server

我创建了 aHomeController和 a BlogController,都带有索引操作,并且创建了以下 MetaWeblog 类:

public interface IMetaWeblog
{
    [XmlRpcMethod("blog.index")]
    string Index();        
}

public class MetaWeblogHandler : XmlRpcService, IMetaWeblog
{
    string IMetaWeblog.Index()
    {
        return "Hello World";
    }        
}

public class MetaWeblogRouteHandler : IRouteHandler
{
    public IHttpHandler GetHttpHandler(RequestContext requestContext)
    {
        return new MetaWeblogHandler();
    }
}
于 2014-04-24T20:49:22.027 回答