在IIS 7.5中实现自定义虚拟路径提供程序的正确配置是什么?使用ASP.NET Development Server从Visual Studio运行时,以下代码按预期工作,但从IIS运行时不加载映像。
.NET 4.0项目文件
CustomVirtualPathProvider.zip - SkyDrive文件
的Web.config
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
Default.aspx的
<%@ Page Title="Home Page" Language="C#" AutoEventWireup="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Virtual Path Provider</title>
</head>
<body>
<img src="Box.png" />
</body>
</html>
Global.asax中
public class Global : System.Web.HttpApplication
{
void Application_Start(object sender, EventArgs e)
{
System.Web.Hosting.HostingEnvironment.RegisterVirtualPathProvider(new WebApplication1.CustomVirtualPathProvider());
}
}
CustomVirtualFile.cs
public class CustomVirtualFile : System.Web.Hosting.VirtualFile
{
private string _VirtualPath;
public CustomVirtualFile(string virtualPath) : base(virtualPath)
{
_VirtualPath = virtualPath.Replace("/", string.Empty);
}
public override Stream Open()
{
string ImageFile =
System.IO.Path.Combine(HttpContext.Current.Request.PhysicalApplicationPath, @"Crazy\Image\Path", _VirtualPath);
return System.IO.File.Open(ImageFile, FileMode.Open, FileAccess.Read);
}
}
CustomVirtualPathProvider.cs
public class CustomVirtualPathProvider : System.Web.Hosting.VirtualPathProvider
{
Collection<string> ImageTypes;
public CustomVirtualPathProvider() : base()
{
ImageTypes = new Collection<string>();
ImageTypes.Add(".PNG");
ImageTypes.Add(".GIF");
}
public override bool FileExists(string virtualPath)
{
if (IsImage(virtualPath))
{
return true;
}
return base.FileExists(virtualPath);
}
public override System.Web.Hosting.VirtualFile GetFile(string virtualPath)
{
if (IsImage(virtualPath))
{
return new CustomVirtualFile(virtualPath);
}
return base.GetFile(virtualPath);
}
private bool IsImage(string file)
{
return ImageTypes.IndexOf(file.ToUpperInvariant().Substring(file.Length - 4, 4)) > -1;
}
}
文件系统
\Crazy\Image\Path\Box.png
IIS配置
没有配置更改的默认站点。
答案 0 :(得分:6)
以下是我发现“修复”我的问题。
http://sunali.com/2008/01/09/virtualpathprovider-in-precompiled-web-sites/
简而言之:
HostingEnviornment显式忽略预编译站点中的虚拟路径提供程序。您可以通过使用反射调用省略此检查的内部版本来规避此限制。因此,而不是调用
HostingEnviornment.RegisterVirtualPathProvider(new EmbeddedViewVirtualPathProvider();
改为打电话:
typeof(HostingEnvironment).GetMethod("RegisterVirtualPathProviderInternal",
BindingFlags.Static | BindingFlags.InvokeMethod | BindingFlags.NonPublic)
.Invoke(null, new object[] {new EmbeddedViewPathProvider()});
答案 1 :(得分:5)
我遇到了同样的问题,但Tom Clarkson带领我走上了正确的道路,他绝对正确,因为你需要额外的配置才能让IIS通过虚拟路径提供商为内容提供商服务。我找到了解决方案here
以下是我认为适合您的web.config-snippet示例
<system.web>
<httpHandlers>
<add path="*.png" verb="*" type="System.Web.StaticFileHandler" validate="true" />
<add path="*.gif" verb="*" type="System.Web.StaticFileHandler" validate="true" />
</httpHandlers>
</system.web>
您还可以在特殊位置(例如“/ MyVirtualFiles”)下注册“通配符httphandler”,如果您的虚拟路径提供程序提供多种不同的文件类型,这可能很有用。
<location path="MyVirtualFiles">
<system.web>
<httpHandlers>
<add path="*" verb="*" type="System.Web.StaticFileHandler" validate="true" />
</httpHandlers>
</system.web>
</location>
答案 2 :(得分:1)
当FileExists返回true时,它被解释为“那里有一个文件,IIS可以在没有ASP.NET的情况下提供它”。要实现下载文件的下一步以通过虚拟路径提供程序,您需要将IIS设置为使用ASP.NET来提供所有图像文件并在global.asax中添加代码或使用您的http处理程序虚拟路径提供者。