我有一个 MVC 项目,我在根目录中添加了一个名为 WCF 的文件夹。在这个文件夹中,我创建了一个名为 CustomFunctions
的 WCF 服务。当我尝试启动服务时,收到以下错误:
附加说明:
我昨天遇到了这个错误,并花了一些时间在互联网上寻找答案。这导致我对 Web.config 以及 Global.asax.cs 进行了大量更改。昨天有一次,它开始工作,我停下来了。然而,当我今天早上回来时,它并没有再次工作。在那段时间之间没有添加任何新内容,也没有更改任何代码。
我已将以下内容添加到我的 Web.config 中:
<system.serviceModel>
<services>
<service behaviorConfiguration="WCFBehavior" name="Viper.WCF.CustomFunctions">
<endpoint address="" binding="wsHttpBinding" contract="Viper.WCF.ICustomFunctions">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost/Viper/WCF/CustomFunctions/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WCFBehavior">
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" httpGetUrl=""/>
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
这对我的
Global.asax.cs
:public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.svc/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new
{
controller = "Home",
action = "Index",
id = UrlParameter.Optional
}, // Parameter defaults
new { controller = "^(?!CustomFunctions).*" }
);
routes.Add(new ServiceRoute("CustomFunctions", new ServiceHostFactory(),
typeof(CustomFunctions)));
}
谁能帮我?我在这里完全没有想法。
最佳答案
我已经想通了问题所在。首先,我错过了注册我的路由的函数的一部分路径。修复该路径后,我能够在我的托管环境中显示我的 wsdl。但是,这弄乱了我所在区域的默认路由。因此,对于将来遇到此问题的任何人,这是我的解决方案:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.svc/{*pathInfo}");
routes.MapRoute(
"CustomFunctions", // Route name
"{controller}/{action}/{id}", // URL with parameters
new
{
controller = "CustomFunctions",
action = "Index",
id = UrlParameter.Optional
}, // Parameter defaults
new { controller = "^(?!CustomFunctions).*" }
);
routes.Add(new ServiceRoute("CustomFunctions", new ServiceHostFactory(),
typeof(CustomFunctions)));
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
// Had to do some special stuff here to get this to work using a default area and no controllers/view in the root
routes.MapRoute(
name: "Default",
url: "{area}/{controller}/{action}/{id}",
defaults: new { area = "", controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces: new string[] { "Viper.Areas.Home" }
).DataTokens.Add("area", "Home");
}
我主要指定了我的自定义路由,以便当我导航到指定的 url 时,它会显示我的 .svc 文件。我从 Global.asax.cs 中的 ApplicationStart 方法调用此方法。我还必须为我的 Home Area 内的 CustomFunctions 创建一个单独的 Controller 和 View ,以便它可以区分我的默认路由和我的 CustomFunctions,并在我的路由图中指定,如上所示。因此,当我转到 localhost\Viper 时,它会找到我的默认 map 中指定的路由,而当我转到 localhost\Viper\CustomFunctions 时,它会找到我的 .svc 文件的路由。 IgnoreRoute 基本上使它成为这样,因此您不必在调用页面时将文件扩展名放在 url 的末尾。因此,我只指定 CustomFunctions,而不是 CustomFunctions.svc。确保在执行此操作时将 System.ServiceModel.Activation 程序集和 using 语句添加到您的项目中。
感谢大家的帮助。希望这能帮助其他一些可怜的失落的灵魂。
关于c# - 在区域外的 MVC 应用程序中托管 WCF 服务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13938746/