代码之家  ›  专栏  ›  技术社区  ›  Ray Lu

ASP.NET MVC VirtualPathProvider在IIS 6下不工作

  •  2
  • Ray Lu  · 技术社区  · 14 年前

    Plug-in architecture for ASP.NET MVC

    我已经分离了DLL(插件),其中包含了资源中的视图、css和javascript文件。因此,我自己的VirtualPathProvider将从DLL中加载内容(如果是插件的话)。在开发过程中一切正常。但它似乎不工作,一旦我部署在IIS(我在iis6中映射了whidcard,视图如下所示)

    我已在global.asax中将VirtualPathProvider注册为

    protected void Application_Start()
    {
        RegisterRoutes(RouteTable.Routes);
        HostingEnvironment.RegisterVirtualPathProvider(new MyVirtualPathProvider());
    }
    

    例如。 http://localhost/Plugin/MyPlugin.dll/Styles.MyStyles.css

    我猜静态文件都是由IIS处理的,而不是通过asp.net和我的VirtualPathProvider?有办法解决这个问题吗?请照点光。

    提前谢谢。

    3 回复  |  直到 7 年前
        1
  •  2
  •   Darin Dimitrov    14 年前

    如果这是iis6,您将需要一个通配符映射。看到了吗 this blog post 菲尔·哈克。

        2
  •  1
  •   Ray Lu    14 年前

    我通过在web.config httpHandlers元素中添加staticFileHandler找到了解决方法。

    <add verb="GET,HEAD,POST" path="*" type="System.Web.StaticFileHandler" validate="true" />
    
        3
  •  0
  •   The Coder    13 年前

    让一个包含资源和控制器的外部编译库在MVC环境中工作,我遇到了很多问题。它在多个项目中使用,不同的错误出现在不同的项目中,因此,以下是我必须做的所有事情(到目前为止),以确保静态文件处理工作:

    1. <添加verb=“GET,HEAD”path=“*.js”name=“Static for js”type=“System.Web.StaticFileHandler”/>

    2. 确保路由中忽略静态项:

      routes.IgnoreRoute(“{*staticfile}”,new{staticfile=@”*\

    3. 注册虚拟路径提供程序,例如:

          System.Web.Hosting.HostingEnvironment.RegisterVirtualPathProvider(new EmbeddedResourceVirtualPathProvider.Vpp(assemblies.ToArray())
          {
              //you can do a specific assembly registration too. If you provide the assemly source path, it can read
              //from the source file so you can change the content while the app is running without needing to rebuild
              //{typeof(SomeAssembly.SomeClass).Assembly, @"..\SomeAssembly"} 
          });
      
    4. 静态文件不需要,但值得一提的是使视图/控制器工作所需的内容,即添加MVCContrib和注册嵌入式视图引擎:

      PortableAreaRegistration.RegisterEmbeddedViewEngine();