3

我有一个使用出色的服务堆栈的自托管 WebService/WebApplication。

我的视图嵌入在 DLL 中,图像也是如此。我正在使用ResourceVirtualPathProvider来自 GitHub 的代码。它正确找到了索引页面和布局,但找不到嵌入的图像/css(可能很明显)。

我将如何配置 Razor 插件来搜索路径提供程序。我已经在调试模式下进行了检查,并且路径提供程序已经找到了所有的 css 和图像。他们只是没有被路由。

编辑

我尝试将 AppHost 的VirtualPathProvider属性设置为与我配置RazorFormat插件相同的提供程序,但无济于事。

最后编辑

感谢 Mythz 的回复,我现在已经完成了这项工作并提供了以下解决方案:

  1. 首先(我之前也有过),我使用Embedded来自GitHub的代码来创建资源虚拟路径提供程序、目录和文件。

  2. 实现了一个 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
    
  3. 在我的配置函数中配置了所有内容(它是静态的这一事实是我的场景所独有的,但它是从常规 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
    
4

1 回答 1

1

您看过RazorRockstars的自托管版本吗?

需要了解静态文件的不是 RazorFormat,它们只是由 ServiceStack 本身处理。

您需要将每个静态文件的Build Action设置为Copy if newer,以便将它们复制到bin/目录中,以便 ServiceStack 可以找到它们,因为它是托管 ServiceStack 的自托管版本的基本目录。

于 2013-07-06T17:40:20.747 回答