[
https://issues.apache.org/jira/browse/WW-3506?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14055509#comment-14055509
]
Hudson commented on WW-3506:
----------------------------
FAILURE: Integrated in Struts-JDK6-develop #53 (See
[https://builds.apache.org/job/Struts-JDK6-develop/53/])
WW-3506 Adds additional Http headers to solve problem with IE (lukaszlenart:
rev 01e33809804c513f414a29e68626cff372dfbbdb)
*
plugins/jasperreports/src/main/java/org/apache/struts2/views/jasperreports/JasperReportsResult.java
> 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
> Assignee: Lukasz Lenart
> Fix For: 2.3.18
>
>
> 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:
> {code:java}
> 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");
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)