Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by GeorgeDinwiddie:
http://wiki.apache.org/struts/ServingPdfDocuments

------------------------------------------------------------------------------
  The subject of serving PDF documents comes up rather frequently on the Struts 
mailing lists.  This seems like an obvious candidate for a Wiki entry!
  
- It should be noted right up front that serving PDFs, and the issues that 
frequently come up, are in no way specific to Struts (although there may indeed 
be some Struts-specific issues).  This is a general requirement which can be 
troublesome whether using Struts or not, so feel free to refernce this entry 
outside the Struts world as well.
+ It should be noted right up front that serving PDFs, and the issues that 
frequently come up, are in no way specific to Struts (although there may indeed 
be some Struts-specific issues).  This is a general requirement which can be 
troublesome whether using Struts or not, so feel free to reference this entry 
outside the Struts world as well.
  
  First up, let's see an example of serving a PDF from a Struts Action:
  
@@ -29, +29 @@

  
  This is clearly not meant to be robust, production-quality code, but it 
should get the basic point across.  It should be noted that the 
StrutsFileDownload Wiki entry shows how to do this using the DownloadAction 
introduced with Struts 1.2.6.  In general, I suggest using the DownloadAction 
whenever you need to serve content like this if you want to do it directly from 
with a Struts apps.
  
- So, what issues can arise?  Here are just a few, and please do feel free to 
add from your own experience:
+ So, what issues can arise?  Here are just a few (all of which seem to be 
bug`^H^H^H` features of various versions of !InternetExplorer), and please do 
feel free to add from your own experience:
  
- * IE will not react well if you do not specify the contentLength properly, so 
always be sure to do so.
+  * IE will not react well if you do not specify the contentLength properly, 
so always be sure to do so.
  
- * If you use the nocache setting on the Struts request processor, you may get 
an error saying the file could not be retrieved, or text to that effect.  This 
may only happen in IE and may only happen under SSL.  Removing this setting 
fixes the problem.  If you want to control caching without experiencing this 
problem, a filter like the Cache Control Filter in Java Web Parts 
(http://javawebparts.sourceforge.net) will allow you to do so.
+  * If you use the nocache setting on the Struts request processor, you may 
get an error saying the file could not be retrieved, or text to that effect.  
This may only happen in IE and may only happen under SSL.  Removing this 
setting fixes the problem.  If you want to control caching without experiencing 
this problem, a filter like the Cache Control Filter in Java Web Parts 
(http://javawebparts.sourceforge.net) will allow you to do so.
  
- * In some cases, the contentType "application/pdf" will not work properly.  
Try using "application/x-octet-stream" instead.
+  * In some cases, the contentType "{{{application/pdf}}}" will not work 
properly.  Try using "{{{application/x-octet-stream}}}" instead.
  
- * If you want the client to save the file rather than try and open it, change 
the Content-Disposition header to "attachment;filename=myPDF.pdf".  In this 
case especially you may have to use the alternate contentType mentioned above 
for IE clients.
+  * If you want the client to save the file rather than try and open it, 
change the Content-Disposition header to "{{{attachment;filename=myPDF.pdf}}}". 
 In this case especially you may have to use the alternate contentType 
mentioned above for IE clients.
  
+  * In some cases, despite the content-type header, IE will refuse to believe 
that a file is actually a PDF, and will not call !AcroRead, but display the raw 
content in the browser.  The only workarounds I know for this are
+ 
+   1. to create the PDF with a different generator and hope for the best, or
+ 
+   1. to save the file to disk and then open it outside of the browser.
+ 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to