JasperReports PDF does not display in IE using HTTPS
----------------------------------------------------

                 Key: WW-3506
                 URL: https://issues.apache.org/jira/browse/WW-3506
             Project: Struts 2
          Issue Type: Bug
          Components: Plugin - JasperReports
    Affects Versions: 2.2.1
         Environment: Windows; Internet Explorer 6, 7, 8; HTTPS
            Reporter: Andrew McCallum


Internet Explorer does not normally cache items from HTTPS sites, so cannot 
store PDF documents prior to launching Adobe Reader.
See http://support.microsoft.com/kb/323308

Change JasperReportsResult.java ~ line 285 to add the following:

        if ("https".equalsIgnoreCase(request.getScheme()))
                {
                // set the the HTTP Header to work around IE SSL weirdness
                response.setHeader("CACHE-CONTROL", "PRIVATE");
                response.setHeader("Cache-Control", "maxage=3600");
                response.setHeader("Pragma", "public");
                response.setHeader("Accept-Ranges", "none");
                }


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to