IE 7 & 8 both throw an error when users attempt to download a csv file over https.
Internet Explorer cannot download downloadPage.jsf. Internet Explorer was not able to open this internet site. The requested site is either unavailable or cannot be found. Please try again
I read about the issues IE has in relation to caching so I changed the response to allow public caching. See this issue: IE cannot download foo.jsf. IE was not able to open this internet site. The requested site is either unavailable or cannot be found
response.setHeader("Pragma", "public");
response.setHeader("Cache-Control", "public");
But I am still getting this error.
Any ideas what else could be causing the issue? Here's the complete snippet:
HttpServletResponse response = (HttpServletResponse) context.getExternalContext().getResponse();
response.setContentType("text/plain");
response.setHeader("Content-Disposition", "attachment; filename=\"" + browserFilename + "\"");
response.setHeader("Pragma", "public");
response.setHeader("Cache-Control", "public");
response.getOutputStream().write(contentBytes);
context.responseComplete();
It appears that WebSphere automatically adds Cache-Control:no-cache=set-cookie
response header when cookies are included in the response. IE8 & older do not like this when downloading over SSL.
There are two possible fixes as per this IBM Developerworks forum thread:
Add the custom response header CookiesConfigureNoCache:false
for HTTP transport Channel in WebSphere (it's true by default).
response.setHeader("CookiesConfigureNoCache", "false");
Explicitly set the Cache-Control
header after cookies are being added, this will override the WebSphere-set one.
response.addCookie(...);
response.addCookie(...);
...
response.setHeader("Cache-Control", ...);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With