gpt4 book ai didi

asp.net - 在 IIS 中添加 WebAPI 作为子/嵌套应用程序

转载 作者:行者123 更新时间:2023-12-02 22:18:47 24 4
gpt4 key购买 nike

重现此问题的步骤:

  1. 在 IIS 中创建一个新的 .net 4 网站(此处称为父网站)。将测试图像放入该网站的文件夹中并观察您可以在浏览器中请求成功
  2. 在指向 WebAPI 2 项目的父级下添加新的虚拟目录或应用程序
  3. 尝试使用 www.path-to-parent-site.com/api/something/or/other 在浏览器中访问 API

我收到以下错误:

 System.Web.Routing.UrlRoutingModule does not implement IHttpHandlerFactory or IHttpHandler.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Configuration.ConfigurationErrorsException: System.Web.Routing.UrlRoutingModule does not implement IHttpHandlerFactory or IHttpHandler.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:


[ConfigurationErrorsException: System.Web.Routing.UrlRoutingModule does not implement IHttpHandlerFactory or IHttpHandler.]
System.Web.Configuration.HandlerFactoryCache.GetHandlerType(String type) +12328272
System.Web.Configuration.HandlerFactoryCache..ctor(String type) +27
System.Web.HttpApplication.GetFactory(String type) +94
System.Web.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +375
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +288


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34209

我能做些什么来让它正常工作吗?我能找到的关于这个特定问题的相关信息非常少,对于那些看到这个错误的人来说,解决方案就更少了。

注意:如果我将 WebAPI 2 项目添加为 IIS 中的新网站,它可以完美运行;仅当其嵌套为子级时(虚拟目录或应用程序有相同的问题)才会发生这种情况。

谢谢

最佳答案

WebApi 不应该托管在虚拟目录上,如果您想这样做,您需要使路由模式动态化并从虚拟目录加载第一部分。

var virtualDirectory = request.ApplicationPath;
routes.MapHttpRoute(
name: "API Default",
routeTemplate: virtualDirectory + "/api/{controller}/{id}",
defaults: new {
id = RouteParameter.Optional
}
);

关于asp.net - 在 IIS 中添加 WebAPI 作为子/嵌套应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27835076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com