Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #26558

    On MS Internet Explorer v7 fails to deliver PDF over HTTPS protocol. On FF and Chrome everything works fine.

    Source configuration:

    PD4ML html = new PD4ML();<br /> html.useHttpRequest(request, response);<br /> <br /> response.setContentType("application/pdf");<br /> response.setHeader("Content-Disposition", "attachment;filename="" + params.getFileName() + ".pdf"");

    #28534

    Try to add the following code:

    [language=java:3t1sjbvm]response.setHeader(“Pragma”, “cache”);
    response.setHeader(“Expires”, “0”);
    response.setHeader(“Cache-control”, “private”);[/language:3t1sjbvm]

    Does it change anything?

    #28535

    It works fine.

    Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)

The forum ‘Troubleshooting’ is closed to new topics and replies.