TuesPechkin 的 StaticDeployment 构造函数中需要什么字符串?临时文件夹?一个dll路径?
我的 TuesPechkin PDF 转换器在我的本地主机的 IIS 上工作正常,使用:
private static readonly IConverter _pdfConverter =
new ThreadSafeConverter(
new RemotingToolset<PdfToolset>(
new Win64EmbeddedDeployment(
new TempFolderDeployment())));
但是在 Windows Server 上运行它时,IIS 会记录此错误:
System.DllNotFoundException:无法加载 DLL 'wkhtmltox.dll':找不到指定的模块。
所以我尝试将我的构造函数更改为此代码(以防 TuesPechkin 试图将 dll 解压缩到它没有写入权限的路径):
private static readonly IConverter _pdfConverter =
new ThreadSafeConverter(
new RemotingToolset<PdfToolset>(
new Win64EmbeddedDeployment(
new StaticDeployment(HttpContext.Current.Server.MapPath(@"~\bin\")))));
得到同样的错误。TuesPechkin.dll 和 TuesPechkin.Wkhtmltox.Win64.dll 都在 bin 文件夹中。