Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Works over normal http though? – BigJump Jul 4 '11 at 15:41
I'm not sure at the moment, having problems with the application on non-ssl mode. – Thomas Buckley Jul 5 '11 at 14:57
This post helped me out so much. Thanks to everyone who contributed! – Matt Apr 20 '12 at 15:25

4 Answers

up vote 6 down vote accepted

It looks like when cookies are included in the response, websphere 7 automatically adds 'no-cache=set-cookie' to the response header.

It looks like IE8 & older do not like this when downloading over SSL.

There are two possible fixes:

1 - Add the custom property 'CookiesConfigureNoCache' and set it to false (its true by default) for HTTP transport Channel in WebSphere.

2 - Set the 'Cache-Control' header after all cookie processing is complete (In my case I simply did not set the cookies for this one download page only as they were not needed.)

http://www.ibm.com/developerworks/forums/thread.jspa?threadID=28910

share|improve this answer
IE (and actually also Websphere) keeps surprising me. +1 for sharing the cause and the solution. – BalusC Jul 6 '11 at 17:33

I had the same issue with IE8. I made small changes to my code.

Response.ClearHeaders(); //needed, otherwise "no-cache: set-cookie" was there, had to get rid of it

Response.addHeader("Cache-Control", "private");

share|improve this answer

I think you are on the right track with caching:

This knowledge base article may help you, Internet Explorer is unable to open Office documents from an SSL Web site

Mentioned in this Stack Overflow question: Cannot open xls file in IE

share|improve this answer
Still no luck. I've tried all sorts of combinations in the response header. It is working fine in a previous version of the application. The only diffenrce is the presence of 2 Set-Cookie items in the response as well as 'Cache-Control: no-cache=set-cookie'. Could this no-cache=set-cookie value be causing problems? – Thomas Buckley Jul 5 '11 at 15:47
I wasn't sure on "Cache-Control: no-cache=set-cookie". But looking at palisade.plynt.com/issues/2007Mar/internet-cookies (the section titled: Do cookies also get stored in caches?) I don't think it should cause any problems. Could it be to do with custom security settings in IE? Are you running IE on a corporate network with extra restrictions (perhaps try firefox)? – Alex Key Jul 5 '11 at 16:01
Yes it's on a corporate network but works fine in firefox and Chrome and IE9. – Thomas Buckley Jul 5 '11 at 16:16
Also, it's happening for multiple users on the network so wouldnt be any custom IE setting we made ourselves. – Thomas Buckley Jul 5 '11 at 16:17
@Thomas Buckley interesting are you running behind a proxy server? – Alex Key Jul 5 '11 at 16:25
show 3 more comments

Had the exact same issue when the app server was configured to use SSL. The trick for me to get it working after the https was turned on:

   string attachment = "attachment; filename=" + rptName + ".xls" + "";    

    HttpContext.Current.Response.Clear();
    HttpContext.Current.Response.ClearHeaders();
    HttpContext.Current.Response.AddHeader("content-disposition", attachment);
    HttpContext.Current.Response.AddHeader("Cache-Control", "private, max-age=1");

    HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";

    HttpContext.Current.Response.Charset = "";
    HttpContext.Current.Response.Buffer = true;
    HttpContext.Current.Response.Cache.SetExpires(DateTime.Now.AddMinutes(1));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.