From b0bb89664fd5ea410b80ded3671e051c0d355906 Mon Sep 17 00:00:00 2001 From: Steven Winship <39765413+stevenwinship@users.noreply.github.com> Date: Wed, 25 Mar 2026 11:35:12 -0400 Subject: [PATCH 1/2] fix signature of writeGuestbookAndStartFileDownload in xhtml --- .../webapp/file-download-button-fragment.xhtml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/webapp/file-download-button-fragment.xhtml b/src/main/webapp/file-download-button-fragment.xhtml index cd6a6b06523..112c2525de8 100644 --- a/src/main/webapp/file-download-button-fragment.xhtml +++ b/src/main/webapp/file-download-button-fragment.xhtml @@ -68,7 +68,7 @@ styleClass="btn-download" process="@this" disabled="#{(fileMetadata.dataFile.ingestInProgress or lockedFromDownload) ? 'disabled' : ''}" - actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'GlobusTransfer')}"> + actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'GlobusTransfer', null)}"> #{bundle['file.globus.of']} #{fileMetadata.dataFile.friendlyType == 'Unknown' ? bundle['file.download.filetype.unknown'] : fileMetadata.dataFile.friendlyType} @@ -118,7 +118,7 @@ styleClass="btn-download" process="@this" disabled="#{(fileMetadata.dataFile.ingestInProgress or lockedFromDownload) ? 'disabled' : ''}" - actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'Download')}"> + actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'Download', null)}"> #{fileMetadata.dataFile.friendlyType == 'Unknown' ? bundle['file.download.filetype.unknown'] : fileMetadata.dataFile.friendlyType} @@ -142,7 +142,7 @@
  • + actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'bundle', null)}"> #{bundle['file.downloadBtn.format.all']} + actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'original', null)}"> @@ -182,7 +182,7 @@ + actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'tab', null)}"> #{bundle['file.downloadBtn.format.tab']} + actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'RData', null)}"> #{bundle['file.downloadBtn.format.rdata']} + actionListener="#{fileDownloadService.writeGuestbookAndStartFileDownload(guestbookResponse, fileMetadata, 'var', null)}"> #{bundle['file.downloadBtn.format.var']} Date: Wed, 25 Mar 2026 11:49:36 -0400 Subject: [PATCH 2/2] add rel note --- doc/release-notes/12252-fix-download-with-guestbook.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 doc/release-notes/12252-fix-download-with-guestbook.md diff --git a/doc/release-notes/12252-fix-download-with-guestbook.md b/doc/release-notes/12252-fix-download-with-guestbook.md new file mode 100644 index 00000000000..d4b3f413c5f --- /dev/null +++ b/doc/release-notes/12252-fix-download-with-guestbook.md @@ -0,0 +1,4 @@ +## Bug fix for JSF download file +This fixes the issue where the action to download a single file in JSF UI silently fails + +See:12251