Re: HTTP header for dynamic pdf and IE6

2004-06-04 Thread Dean A. Hoover
me="foo.bar" to the content type. I tried playing with that stuff, but as I noted earlier, I am missing something. Hope that helps! Frank From: "Dean A. Hoover" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECT

RE: HTTP header for dynamic pdf and IE6

2004-06-04 Thread Frank Zammetti
y annoying) and give it a try. Hope that helps! Frank From: "Dean A. Hoover" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: HTTP header for dynamic pdf and IE6 Date: Fri, 04 Jun 2004 08:37:45 -0400 Sorry i

Re: HTTP header for dynamic pdf and IE6

2004-06-04 Thread Dean A. Hoover
Sorry its not clear, but the filename does end in .pdf Dean Mark Lowe wrote: I'm not sure, but i think bill thought the world a better place if applications associate file types according to the file suffix. it will need .pdf at the end of the filename. filename=\"" + attachment.getFileName() + "

Re: HTTP header for dynamic pdf and IE6

2004-06-04 Thread Henrique VIECILI
e.getOutputStream(); out.write(data); out.flush(); out.close(); Ok, i´m sure it works with Acrobat4+ and IE5+. I did not tested in Linux and other browsers. Henrique Viecili - Original Message - From: Dean A. Hoover To: [EMAIL PROTECTED] Sent: Friday, June 04, 2004 9:37 AM Su

Re: HTTP header for dynamic pdf and IE6

2004-06-04 Thread Mark Lowe
I'm not sure, but i think bill thought the world a better place if applications associate file types according to the file suffix. it will need .pdf at the end of the filename. filename=\"" + attachment.getFileName() + "\".pdf" could fix it. On 4 Jun 2004, at 14:37, Dean A. Hoover wrote: Sorry if

HTTP header for dynamic pdf and IE6

2004-06-04 Thread Dean A. Hoover
Sorry if this is inappropriate for this list, but I really don't know where else to turn. I figured someone on this list may have solved it. I have a java web application that allows an end-user in their browser to download a "file", which happens to be bytes stored in a database. In experimenting