| Article: |
Dynamically Creating PDFs in a Web Application | |
| Subject: | pdf does not load with IE 6.0.2800.1106 | |
| Date: | 2003-10-15 09:44:38 | |
| From: | anonymous2 | |
|
Hello:
|
||
Showing messages 1 through 5 of 5.
-
pdf does not load with IE 6.0.2800.1106
2004-03-02 12:33:51 joeseminara [View]
-
pdf does not load with IE 6.0.2800.1106
2004-09-14 11:56:27 rshimpi [View]
hi,
I am having the same problem. I am dead if I don't get this stupid thing working with IE. Every other browser works fine.
Could you share with me if you got this working?
thanks
-raj
-
pdf does not load with IE 6.0.2800.1106
2003-11-21 11:32:17 anonymous2 [View]
Security changed in IE6. Try setting Acrobat to NOT integrate/launch within the browser window (launches as a separate window).
-
pdf does not load with IE 6.0.2800.1106
2003-10-18 14:38:24 anonymous2 [View]
I am using MSIE 6.0, Adobe Acrobat Reader 6.0, and iText 1.00
It works for me.
-
pdf does not load with IE 6.0.2800.1106
2004-10-20 09:34:04 subashk [View]
It's a bug in IE.
The workaround is to uncheck the Security option "Do not save encrypted pages to disk".
http://support.microsoft.com/kb/812935



This fix, from http://www.lowagie.com/iText/faq.html#msie and Nicolas Guichard,
removes the problem:
response.setHeader("Expires", "0");
response.setHeader("Cache-Control", "must-revalidate, post-check=0, pre-check=0");
response.setHeader("Pragma", "public");