1

我目前正在开发托管在 Azure 服务结构中的打印服务(一种将取代 Web 和辅助角色的新产品)。我使用 wkhtmltopdf 和 NReco.PDFGenerator.LT 作为其包装器,它在本地开发集群中运行良好,但在联机时失败。

我得到的唯一例外是Exception thrown: 'System.Exception' in NReco.PdfGenerator.LT.dll我发现很难调试,因为它不能说明什么是失败的。

读到这篇我想集群上可能缺少一些东西,但是本地环境应该是在线环境的副本。此外,在切换到 wkhtmltopdf 之前,我在同一集群中使用了带有 NReco 包装器的 phantomjs,它是在线和本地工作,我相信他们都使用相同的核心引擎(尽管不同的分叉)?

这是我的代码,在远程调试中,我检查了许可证、.exe 路径和文件是否具有正确的值。

[HttpGet]
    public ActionResult Get(string target)
    {
        var wktohtmlPath = Path.Combine(_hostingEnvironment.WebRootPath, "lib");
        var htmlToPdf = new HtmlToPdfConverter() {
            Quiet = false,
            CustomWkHtmlArgs = "--print-media-type",
            PdfToolPath = wktohtmlPath,
            Margins = new PageMargins() { Left = 17, Right = 17, Top = 17, Bottom = 17 }
        };
        htmlToPdf.License.SetLicenseKey(
             _optionsAccessor.Value.LicenceOwner,
             _optionsAccessor.Value.LicenceKey
        );

        try
        {
            var fileBytes = htmlToPdf.GeneratePdfFromFile(target, null);
            var fileStream = new MemoryStream(fileBytes);
            return new FileStreamResult(fileStream, "application/pdf");
        }
        catch
        {
            return BadRequest();
        }
    }

感谢您的回答

4

1 回答 1

1

记录:有两个问题

  • 在线集群上缺少 C++ 运行时库(msvcp120.dll 和 msvcr120.dll)(感谢 NReco);
  • 似乎服务结构只能运行 x86 版本,而我正在使用 x64 版本。
于 2016-11-25T13:26:09.243 回答