gpt4 book ai didi

c# - 使用 LibreOffice(soffice.exe) 作为 Process.Start() from Code behind 不在 IIS 服务器上工作

转载 作者:太空宇宙 更新时间:2023-11-03 12:11:43 27 4
gpt4 key购买 nike

我使用 LibreOffice 作为将 docx 转换为 pdf 的命令行。我正在使用下面的代码片段。

    using (Process pdfprocess = new Process())
{
pdfprocess.StartInfo.UseShellExecute = true;
pdfprocess.StartInfo.LoadUserProfile = true;
pdfprocess.StartInfo.FileName = "soffice.exe";
pdfprocess.StartInfo.Arguments = "-norestore -nofirststartwizard -headless -convert-to pdf C:\\test.docx";
pdfprocess.StartInfo.WorkingDirectory = @"C:\Program Files\LibreOffice\program\";
pdfprocess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
pdfprocess.Start();
if (!pdfprocess.WaitForExit(1000 * 60 * 1)) {
pdfprocess.Kill();
}
pdfprocess.Close();
}

在 IISExpress 或控制台应用程序下一切正常。当我尝试在 IIS 服务器下运行时,它不起作用。

我在 DefaultAppPool 下运行,我已授予 DefaultAppPool 访问 LibreOffice 目录的权限,但我无法获得结果。

出于安全考虑,我不想将身份更改为 LocalSystem

如何在默认 ApplicationPoolIndentity 下使用 Process.Start() 运行 soffice.exe

最佳答案

我有同样的问题,我只是 found对我有用的解决方案。当我在 CMD 控制台下执行转换时,一切正常。但是在iis app下执行的soffice.exe没有运行。

虽然应用程序池有它自己的用户配置文件目录,但看起来 libreoffice 无法在那里创建它的文件。我所做的是在 iis www 目录下创建了临时文件夹并赋予它 apppool 权限。然后我用其他参数传递了这个位置:“-env:UserInstallation=file:///C:/www/temp/libreoffice”

关于c# - 使用 LibreOffice(soffice.exe) 作为 Process.Start() from Code behind 不在 IIS 服务器上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51901973/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com