Difference between revisions of "Unable to View pdf Attachments"
From SDU
(New page: By default, while r11.x allows the uploading of pdf files as Attachments, it does not permit the viewing of them. To add this capability, follow these simple procedures: # Access web.xml ...) |
|||
| Line 1: | Line 1: | ||
| + | [[Category:Solutions]] | ||
By default, while r11.x allows the uploading of pdf files as Attachments, it does not permit the viewing of them. To add this capability, follow these simple procedures: | By default, while r11.x allows the uploading of pdf files as Attachments, it does not permit the viewing of them. To add this capability, follow these simple procedures: | ||
| − | # Access web.xml located in [[NX_ROOT]]/bopcfg/www/CATALINA_BASE/webapps/CAisd/WEBINF | + | # Access '''web.xml''' located in [[NX_ROOT]]/bopcfg/www/CATALINA_BASE/webapps/CAisd/WEBINF |
# The web.xml file contains pairings of param-name and param-value. Search for the param-name of '''save_as_dialog_ext'''. | # The web.xml file contains pairings of param-name and param-value. Search for the param-name of '''save_as_dialog_ext'''. | ||
# Add pdf to the end of the string in the param-value that follows. | # Add pdf to the end of the string in the param-value that follows. | ||
| − | <!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-- | + | Example: |
| − | + | <!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1--><param-name>save_as_dialog_ext</param-name><br><param-value>eml,doc,zip,gz,tar,xls,rtf,ppt,pps,msg,pdf</param-value><!--c2--></div><!--ec2--> | |
| − | + | ||
| − | + | ||
Revision as of 05:55, 15 January 2008
By default, while r11.x allows the uploading of pdf files as Attachments, it does not permit the viewing of them. To add this capability, follow these simple procedures:
- Access web.xml located in NX_ROOT/bopcfg/www/CATALINA_BASE/webapps/CAisd/WEBINF
- The web.xml file contains pairings of param-name and param-value. Search for the param-name of save_as_dialog_ext.
- Add pdf to the end of the string in the param-value that follows.
Example:
CODE
<param-name>save_as_dialog_ext</param-name>
<param-value>eml,doc,zip,gz,tar,xls,rtf,ppt,pps,msg,pdf</param-value>
<param-value>eml,doc,zip,gz,tar,xls,rtf,ppt,pps,msg,pdf</param-value>