IE cannot download foo.jsf. IE was not able to open this internet site. The requested site is either unavailable or cannot be found

前端 未结 2 631
日久生厌
日久生厌 2020-12-04 01:11

I\'m providing a file download (usually CSV or PDF) in my JSF web application on a HTTPS (SSL) host. It works fine in most browsers, only IE7/8 gives the following error:

相关标签:
2条回答
  • 2020-12-04 02:02

    The issue wouldn't be related to jsf as it's just converting commandbutton to html which is accessible in all browsers. I'm guessing the issue is in abcBean.downloadCSV. Are you setting the content-type properly on the csv file?

    Can you describe what occurs in your action method?

    0 讨论(0)
  • 2020-12-04 02:08

    This is a typical MSIE error message when a download is been provided over HTTPS (SSL) while the response headers are been set to disable the browser cache via no-cache. This issue is not related to JSF.

    You need to relax the response headers which have influence on the browser cache. It should not contain the no-cache instruction. You could set it to public, private or no-store.

    response.setHeader("Cache-Control", "public");
    response.setHeader("Pragma", "public");
    

    See also MS KB Q316431.

    Additionally, if you happen to run on WebSphere Application Server, then add the below header as well in order to prevent it from overriding the Cache-Control header afterwards:

    response.setHeader("CookiesConfigureNoCache", "false");             
    

    See also IE cannot download files over SSL served by WebSphere.

    0 讨论(0)
提交回复
热议问题