gpt4 book ai didi

java - Azure 中的 org.apache.fop.apps.FOPException : . fop(访问被拒绝)

转载 作者:行者123 更新时间:2023-12-05 02:19:33 26 4
gpt4 key购买 nike

我最近在现有应用程序中添加了一个 fop pdf 生成器。在本地一切正常,但当我部署到 Azure 上时,出现以下错误:

org.apache.fop.apps.FOPException: .fop (Access is denied)
java.io.FileNotFoundException: .fop (Access is denied)

我很困惑为什么当 fopfactory 写入 ByteOutputstream 时似乎发生异常时我会收到文件访问错误

发生catch的函数是

        public static void GeneratePDF(string foFile, HttpContext context) {
StringBuilder sbDebug = new StringBuilder();

sbDebug.AppendLine("Start");
ByteArrayOutputStream os = new java.io.ByteArrayOutputStream();
try
{
sbDebug.AppendLine("Got to 1");
com.sun.org.apache.xerces.@internal.jaxp.SAXParserFactoryImpl s = new com.sun.org.apache.xerces.@internal.jaxp.SAXParserFactoryImpl();
sbDebug.AppendLine("Got to 2");
FopFactory fopFactory = FopFactory.newInstance(new java.io.File(System.Web.Hosting.HostingEnvironment.MapPath("~/App_Data/Test.xconf")));
sbDebug.AppendLine("Got to 3 - file ").AppendLine(System.Web.Hosting.HostingEnvironment.MapPath("~/App_Data/Test.xconf"));
Fop fop = fopFactory.newFop("application/pdf", os);

sbDebug.AppendLine("Got to 4");
javax.xml.transform.TransformerFactory factory = javax.xml.transform.TransformerFactory.newInstance();
javax.xml.transform.Transformer transformer = factory.newTransformer();
javax.xml.transform.Source src = new javax.xml.transform.stream.StreamSource(new java.io.StringReader(foFile));
javax.xml.transform.Result res = new javax.xml.transform.sax.SAXResult(fop.getDefaultHandler());
sbDebug.AppendLine("Got to 5");
transformer.transform(src, res);

context.Response.ContentType = "application/pdf";
context.Response.BinaryWrite(os.toByteArray());
//context.Response.BinaryWrite(System.Text.Encoding.UTF8.GetBytes(os.ToString()));
}

catch (Exception ex) {
throw new Exception(sbDebug.AppendLine(ex.ToString()).ToString());
}

finally {
os.close();
}
}

您可以看到我添加了一些调试行,因为我不得不求助于老式调试来查看发生了什么。其输出是:

Catch Error: System.Exception: Start
Got to 1
Got to 2
Got to 3 - file
D:\home\site\wwwroot\App_Data\Test.xconf
org.apache.fop.apps.FOPException: .fop (Access is denied)
java.io.FileNotFoundException: .fop (Access is denied)

所以我可以看到异常发生在这一行:

Fop fop = fopFactory.newFop("application/pdf", os);

除了读取 xconf 文件之外,我希望所有事情都发生在内存中。

更新 21/02/2017 我现在已经验证 xconf 文件存在于正确的位置使用

string curFile = System.Web.Hosting.HostingEnvironment.MapPath("~/App_Data/Test.xconf");
if (System.IO.File.Exists(curFile)) //Used System.IO prefix as without it compiler complains of ambiguity with java.io
{
sbDebug.AppendLine("Got to 3a - file found");
}
else
{
sbDebug.AppendLine("Got to 3a - file NOT found");
}

而且它可以使用阅读

BufferedReader br = new BufferedReader(new FileReader(curFile));
sbDebug.AppendLine("Got to 3b");

String sJIObrOut = br.readLine();
sbDebug.AppendLine("Got to 3c");
while ((sJIObrOut = br.readLine()) != null)
{
sbDebug.Append("3d: ").AppendLine(sJIObrOut);
}

这表明 fopfactory 正在尝试访问不同的文件,但我不知道是什么。

感谢收到的任何帮助。

更新 2 22/3/17我没有成功使用 Azure 云服务,因此决定构建一个本地 Web 应用程序,将 xslfo 文档转换为 pdf 并将其作为 Web 服务运行。这在本地完美运行,因此在我们用于其他客户端的服务器上发布了服务。这不起作用,我得到的错误与我原来的帖子完全一样。这意味着这不是 Azure 的问题 - 有人有任何其他想法吗?

最佳答案

非常感谢@mondjunge 为我指明了正确的方向。我现在有一个在 Azure 之外工作的解决方案 - 在适当的时候,我希望这将是我可以直接应用于 Azure 的东西,我将相应地添加到这篇文章中

似乎缓存写入是导致问题的原因(权限)。

我已经实现的解决方法/修复是将以下行添加到 xconf 文件中(我把它放在/fop 结束标记之前,但认为它不重要,只要它是 fop 的直接子节点)

<use-cache>false</use-cache>

希望这能为其他人节省几天的麻烦和压力

2017 年 7 月 4 日更新

出于兴趣,我尝试将此行添加到纯 azure 托管版本,它不再给我权限错误,而是给我一个关于 GDI 的错误,这可能与 @PeterPan 最初建议的一致。因为我有一个在别处托管的 fop 应用程序的工作版本,所以我将保留它。

关于java - Azure 中的 org.apache.fop.apps.FOPException : . fop(访问被拒绝),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42353935/

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