5

我正在使用https://github.com/codaxy/wkhtmltopdf包装器从我网站上的网页创建 pdf(我传入一个绝对 URL,例如http://mywebsite.azurewebsites.net/PageToRender.aspx它在开发人员和另一个共享托管帐户上工作正常,但是当我部署到 Azure 网站时,它失败了,我得到的只是一个 ThreadAbortException。是否可以在 azure 上使用 wkhtmltopdf,如果可以,我做错了什么?

更新:这个简单的例子只使用 Process.Start 也不起作用。它只是在 Azure 上运行时挂起,但在其他服务器上运行良好。

string exePath = System.Web.HttpContext.Current.Server.MapPath("\\App_Data\\PdfGenerator\\wkhtmltopdf.exe");
string htmlPath = System.Web.HttpContext.Current.Server.MapPath("\\App_Data\\PdfGenerator\\Test.html");
string pdfPath = System.Web.HttpContext.Current.Server.MapPath("\\App_Data\\PdfGenerator\\Test.pdf");
StringBuilder error = new StringBuilder();
using (var process = new Process())
{
    using (Stream fs = new FileStream(pdfPath, FileMode.Create))
    {
        process.StartInfo.FileName = exePath;
        process.StartInfo.Arguments = string.Format("{0} -", htmlPath);
        process.StartInfo.RedirectStandardOutput = true;
        process.StartInfo.RedirectStandardError = true;
        process.StartInfo.UseShellExecute = false;
        process.Start();
        while (!process.HasExited)
        {
            process.StandardOutput.BaseStream.CopyTo(fs);
        }
        process.WaitForExit();
    }
}
4

1 回答 1

0

查看这个关于类似问题的 SO question。这家伙似乎已经得到了它的工作。RotativaPDF 建立在 wkhtmltopdf 之上,因此建立了连接。我正在我们的 Azure 网站上亲自尝试 - 我将在不久的将来发布我的结果。

用于 ASP.NET MVC3 的 Azure 和 Rotativa PDF 打印

于 2015-01-22T04:47:12.147 回答