gpt4 book ai didi

pdf - 检索 pdf 时出现意外的服务器响应 (0)

转载 作者:行者123 更新时间:2023-12-03 17:38:54 26 4
gpt4 key购买 nike

我们在使用 Amazon ec2 实例时特别收到此错误。 aws 实例上的配置为 Tomcat 7,Ubuntu 16.04,内存为 8GB。当用户尝试查看 pdf 文件时会发生这种情况。在我们的应用程序中,我们有一项功能,用户只能在浏览器上查看 PDF 文件,但不能下载它。 PDF 文件在同一台服务器上。我们正在使用 cors 最小配置。我们已经在 Ubuntu 本地尝试过它,它运行良好。

enter image description here

代码片段:

var fileSplitContent = fileName.split(".");
if ($('#viewImageOnlyForm')[0] != undefined && $('#viewPdfOnlyForm')[0] != undefined) {
if (fileSplitContent[fileSplitContent.length - 1].toLowerCase() != "pdf") {
$('#imageSource').val(requestURL + $.param(inputData));
$('#viewImageOnlyForm').submit();
} else {
var requestURL = "rest/file/getCapitalRaiseFile?";
$('#pdFSource').val(requestURL + $.param(inputData));
$('#viewPdfOnlyForm').submit();
}
} else {
// pop up download attachment dialog box
downloadIFrame.attr("src", requestURL + $.param(inputData));
}

}

Jan 04, 2017 5:07:31 AM org.glassfish.jersey.server.ServerRuntime$Responder writeResponse SEVERE: An I/O error has occurred while writing a response message entity to the container output stream. org.glassfish.jersey.server.internal.process.MappableException: org.apache.catalina.connector.ClientAbortException: java.net.SocketException: Connection reset
Caused by: org.apache.catalina.connector.ClientAbortException: java.net.SocketException: Broken pipe (Write failed)

最佳答案

根据您访问文档的位置,这可能是因为您的浏览器上安装了下载管理器。这有时会导致问题 - 也许看看你的扩展。 您应该尝试在浏览器中禁用下载管理器扩展 .

关于pdf - 检索 pdf 时出现意外的服务器响应 (0),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41457353/

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