WCF宿主MVC的问题

让人头疼了几天的问题,终于得到解决,拿出来分享一下。。其实只要在路由里屏蔽关键字即可。

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using System.ServiceModel.Activation;

namespace Urp.Sms
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801

public class MvcApplication : System.Web.HttpApplication
{
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
}

public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Account", action = "Index", id = UrlParameter.Optional }
, new { controller = @"^\b(?!WcfSvr)\w*\b$" }
);


}
protected void Application_Start()
{

AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
RouteTable.Routes.Add(new ServiceRoute("WcfSvr", new WebServiceHostFactory(), typeof(WcfSvr)));

}
void Application_End(object sender, EventArgs e)
{

}

}
}

posted on 2014-07-17 16:18  forxujiangbo  阅读(250)  评论(0)    收藏  举报

导航