Re: Help: Output from servlet is garbage

2003-04-28 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: First of all thanks for clearing me up on the IE issue, etc. The problem I am trying to solve is generating the fo: without having to write and read from a file. Either there aren't any or I was so thick as not to see any examples of doing this without having to do

RE: Help: Output from servlet is garbage

2003-04-25 Thread Adam Shelley
The giberish is your pdf in binary format. if you are using ie add dummy.pdf onto the end to ensure it will open it in the acrobat plugin. Check the docs regarding this. -Adam -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: April 25, 2003 1:40 PM To: [EMAIL

RE: Help: Output from servlet is garbage

2003-04-25 Thread Joseph . Sadove
(dummy.pdf.getBytes()); /CODE-SNIPPET Adam Shelley [EMAIL PROTECTED] 04/25/2003 04:45 PM Please respond to fop-user To:[EMAIL PROTECTED] cc: Subject:RE: Help: Output from servlet is garbage The giberish is your pdf in binary format. if you are using ie add dummy.pdf

RE: Help: Output from servlet is garbage

2003-04-25 Thread Steve Albin
PM Please respond to fop-user To:[EMAIL PROTECTED] cc: Subject:RE: Help: Output from servlet is garbage The giberish is your pdf in binary format. if you are using ie add dummy.pdf onto the end to ensure

RE: Help: Output from servlet is garbage

2003-04-25 Thread Steve Albin
2:47 PM To: [EMAIL PROTECTED] Subject: RE: Help: Output from servlet is garbage Thanks for the super fast reponse. I'm using the following code to write the rendered stream to the response. I don't think I can just append the dummy.pdf to the prepared stream

Re: Help: Output from servlet is garbage

2003-04-25 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: I'm using the following code to write the rendered stream to the response. I don't think I can just append the dummy.pdf to the prepared stream, It was meant to append this to the URL which causes the servlet producing the PDF to be invoked. CODE-SNIPPET This seems to be