ERROR: application/pdf is not a supported mime type [duplicate]
This question is an exact duplicate of: File is not downloading from server 3 answers I am using Struts2 and Liferay for developing an application. My struts.xml is as follows: <action name="download" class="com.stp.portal.view.DownloadAction"> <result name="success" type="stream"> <param name="contentType">application/pdf</param> <param name="inputName">fileInputStream</param> <param name="contentDisposition">attachment;filename="abc.pdf"</param> <param name="bufferSize">1024</param> </result> </action> I basically want to download a pdf file from the server. But I get the following error: 10