Are you using IE?

There are many troubles generating PDF over SSL.

See for an example :
http://eirikhoem.wordpress.com/2007/06/15/generated-pdfs-over-https-with-internet-explorer/
http://eirikhoem.wordpress.com/2007/06/15/generated-pdfs-over-https-with-internet-explorer/
 


If you google "IE PDF SSL", you will find many answers.

Here's the workaround I use in my wicket applications (i'm generating PDF
with jasperreports) :
                WebResponse response = (WebResponse)
getRequestCycle().getResponse();
                response.setDateHeader("Expires", -1);
                response.setHeader("Pragma", "public");
                response.setHeader("Cache-Control", "public");

Regards,

Gabriel.
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Downloading-generated-PDF-behavior-different-with-apache-in-front-of-appserver-tp2336943p2338770.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to