我有一个使用出色的服务堆栈的自托管 WebService/WebApplication。
我的视图嵌入在 DLL 中,图像也是如此。我正在使用ResourceVirtualPathProvider
来自 GitHub 的代码。它正确找到了索引页面和布局,但找不到嵌入的图像/css(可能很明显)。
我将如何配置 Razor 插件来搜索路径提供程序。我已经在调试模式下进行了检查,并且路径提供程序已经找到了所有的 css 和图像。他们只是没有被路由。
编辑
我尝试将 AppHost 的VirtualPathProvider
属性设置为与我配置RazorFormat
插件相同的提供程序,但无济于事。
最后编辑
感谢 Mythz 的回复,我现在已经完成了这项工作并提供了以下解决方案:
首先(我之前也有过),我使用
Embedded
来自GitHub的代码来创建资源虚拟路径提供程序、目录和文件。实现了一个 VirtualFileHandler:
public sealed class VirtualFileHandler : IHttpHandler, IServiceStackHttpHandler { private IVirtualFile _file; /// <summary> /// Constructor /// </summary> /// <param name="file">File to serve up</param> public VirtualFileHandler(IVirtualFile file) { _file = file.ThrowIfDefault("file"); } // eo ctor public bool IsReusable { get { return false; } } public void ProcessRequest(HttpContext context) { ProcessRequest(new HttpRequestWrapper(null, context.Request), new HttpResponseWrapper(context.Response), null); } // eo ProcessRequest public void ProcessRequest(IHttpRequest request, IHttpResponse response, string operationName) { try { response.ContentType = ALHEnvironment.GetMimeType(_file.Extension); using (Stream reader = _file.OpenRead()) { byte[] data = reader.ReadFully(); response.SetContentLength(data.Length); response.OutputStream.Write(data, 0, data.Length); response.OutputStream.Flush(); } } catch (System.Net.HttpListenerException ex) { //Error: 1229 is "An operation was attempted on a nonexistent network connection" //This exception occures when http stream is terminated by the web browser. if (ex.ErrorCode == 1229) return; throw; } } // eo ProcessRequest } // eo class VirtualFileHandler
在我的配置函数中配置了所有内容(它是静态的这一事实是我的场景所独有的,但它是从常规 AppHost 的
Configure
函数中有效调用的)protected static void Configure(WebHostConfiguration config) { _pathProvider = new MultiVirtualPathProvider(config.AppHost, new ResourceVirtualPathProvider(config.AppHost, WebServiceContextBase.Instance.GetType()), new ResourceVirtualPathProvider(config.AppHost, typeof(ResourceVirtualPathProvider))); config.Plugins.Add(new RazorFormat() { EnableLiveReload = false, VirtualPathProvider = _pathProvider }); /* * We need to be able to locate other embedded resources other than views, such as CSS, javascript files, * and images. To do this, we implement a CatchAllHandler and locate the resource ourselves */ config.AppHost.CatchAllHandlers.Add((httpMethod, pathInfo, filePath) => { IVirtualFile file = _pathProvider.GetFile(pathInfo); if (file == null) return null; return new VirtualFileHandler(file); }); } // eo Configure