Note: patch 18277370 needed for 11.1.1.7 to run ie 11
All our download links on ie 11 file names looked like they have been url encoded something like:
UTF-8_Q_Bobs=5FBooks=2Epdf=
Really irritating for our users so the quick and dirty for now was to modify (luckily all our download code is common) our download method to reset the headers on the response.
On our button we add the following:
<af:fileDownloadActionListener filename="test.txt"
contentType="application/octet-stream"
method="#{bean.startDownload}"/>
<af:setPropertyListener from="/ucm/path/here"
to="#{requestScope.ucmCurrentDocument}"
type="action"/>
public void startDownload(FacesContext facesContext, OutputStream outputStream) {
String docName = (String)JSFUtils.getFromRequest("ucmCurrentDocument");
applyIE11Fix(docName);
... write file to output stream here ...
}
private void applyIE11Fix(String docName) {
RequestContext requestCtx = RequestContext.getCurrentInstance();
Agent agent = requestCtx.getAgent();
String version = agent.getAgentVersion();
String browser = agent.getAgentName();
//if ie 11
if (browser != null && "ie".equals(browser) && version != null && version.startsWith("11")) {
HttpServletResponse resp = JSFUtils.getResponse();
String finalName = docName;
try {
finalName = URLEncoder.encode(docName, "UTF-8");
} catch (UnsupportedEncodingException e) {
}
resp.setHeader("content-disposition", "attachment; filename=\"" + finalName + "\"");
resp.setContentType("application/octet-stream");
}
}
¿What is ucmCurrentDocument?
ReplyDeleteI'm trying to replicate your code.
but I know no, how interpret this part:
Row docName = (Row)JSFUtils.getFromRequest("ucmCurrentDocument");
you could help me please...
The patch 18277370 was affixed in weblogic 11g and I'm using Jdeveloper Version 11.1.1.7.0.
I have updated the post as I was not clear. It is the document location passed in from the button via the request using a setPropertyListener
Delete