vote up 2 vote down star

Possible Duplicate:
“name” web pdf for better default save filename in Acrobat?

I have a jsp application that is producing a PDF file and displaying inline in the browser. I would like to set the name of the file so when the user chooses to save the pdf in the browser it is defaulted to something meaningful. Currently the 'Save As' dialog defaults to the name of the servlet.

I have tried the following:-

response.setHeader( "Content-disposition", "attachment; filename=\""+fileName+".pdf\"");
response.setHeader( "Content-disposition", "inline; filename=\""+fileName+".pdf\"");

This first line works but doesn't show inline. The second line shows the pdf inline but when choosing the save pdf option in Acrobat Reader within the browser it still shows the servlet name.

Is there anyway to do this when showing inline initially? Any help appreciated!

flag

25% accept rate
Added a vote to close this as a duplicate of the question you've found. If 4 more people vote (or a moderator votes) to close it, then your question will be closed. – Dominic Rodger Sep 7 at 13:49
added a vote to close as "no longer relevant" since OP found the answer himself – marc_s Sep 7 at 13:58

closed as exact duplicate by Dominic Rodger, marc_s, Jeff Atwood Sep 7 at 14:11

Browse other questions tagged or ask your own question.