Re: [iText-questions] Digital Signature functionality?

2002-10-08 Thread Leonard Rosenthol
At 3:59 PM -0400 10/7/02, Lomvardias, Christopher wrote: Any chance of adding digital signature functionality to iText? AFAIK, the only server-based digital signature tool for PDF files is SecurSign from Appligent (http://www.appligent.com). Leonard --

Re: [iText-questions] How to set the PDF file name?

2002-10-08 Thread Robert Badaracco
Define the path to your file as a String and then declare a writer object like: PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(filepath)); Bob --- Ramakrishna Kuppa [EMAIL PROTECTED] wrote: I am able to generate the file properly. However, when I try to save it using

RE: [iText-questions] How to set the PDF file name?

2002-10-08 Thread Ram Guttikonda
You might want to do something like this.. HttpServletResponse _hsr = _requestContext.getResponse(); //get the servlet response _hsr.setContentType(application/pdf); String disposition = attachment; filename= + your filename; _hsr.setHeader(Content-disposition, disposition); Hope that

RE: [iText-questions] How to set the PDF file name?

2002-10-08 Thread Ramakrishna Kuppa
Ram, As I mentioned in my posting, I have the disposition set to inline i.e., the doc. is opened directly in the browser. This is a requirement and cant be changed. It is in this setting that I want to get the file name correctly. -Original Message- From: Ram Guttikonda [mailto:[EMAIL