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: Internet Explorer cannot download the file served by JSF
But I am still getting this error.
Any ideas what else could be causing the issue?
Response header:
<response>
<status>200</status>
<statusText>OK</statusText>
<httpVersion>HTTP/1.1</httpVersion>
<cookies>
....
</cookies>
<headers>
<header>
<name>Server</name>
<value>WebSphere Application Server/7.0</value>
</header>
<header>
<name>X-Powered-By</name>
<value>JSF/1.2</value>
</header>
<header>
<name>Set-Cookie</name>
<value>Whatever1=whatever; Path=/; Secure</value>
</header>
<header>
<name>Set-Cookie</name>
<value>Whatever2=whatever; Path=/; Secure</value>
</header>
<header>
<name>Content-Disposition</name>
<value>attachment; filename="21312312323432.csv"</value>
</header>
<header>
<name>Pragma</name>
<value>public</value>
</header>
<header>
<name>Cache-Control</name>
<value>public</value>
</header>
<header>
<name>Content-Type</name>
<value>text/plain</value>
</header>
<header>
<name>Transfer-Encoding</name>
<value>chunked</value>
</header>
<header>
<name>Date</name>
<value>Mon, 04 Jul 2011 15:23:53 GMT</value>
</header>
</headers>
</response>
My code:
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();
Thanks