[iText-questions] FileOutputStream problem

2007-02-02 Thread Carlos Bergueira
Hi All, My application is a web based one; this one allow my customers to: - receive invoice by mail; - get an on-line view On-line view is running fine! I want to use the same servlet (pdfInvoiceGeneratorPL) to allow them to received their invoices by mail. Basically, customer access their 'on

[iText-questions] document is not open error

2007-01-12 Thread Carlos Bergueira
Hi all, I am getting the following error: java.lang.RuntimeException: The document is not open. I am generating PDF on the fly, via servlet, and at the 1st generated pdf, everything looks fine and pdf is ok!; second time or refreshing browser, get the error above. Any help? Thanks Here is my c

[iText-questions] Text to stamp in a pdf generating on the fly

2006-06-04 Thread Carlos Bergueira
Hi All,   I need to stamp a word on a pdf I am generating on the fly. Anyone can help me?   Thanks,   -- Cumprts,Carlos Bergueira ___ iText-questions mailing list iText-questions@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/itext

[iText-questions] Using jsp file as template

2006-02-13 Thread Carlos Bergueira
Hi All, I have a .jsp file that I want to use as template. Only few elements are changed (name, city, etc.). Is it possible with itext ?Someone can tell me where I can find informationabut this topic ?Thanks in advanced.-- Cumprts,Carlos Bergueira

Re: [iText-questions] Align paragraph

2006-01-17 Thread Carlos Bergueira
working !Are you making fun of me?I predicted AND answered your question.See the archives: http://article.gmane.org/gmane.comp.java.lib.itext.general/20300br,Bruno-- Cumprts, Carlos Bergueira

[iText-questions] Align paragraph

2006-01-17 Thread Carlos Bergueira
       Paragraph paragraph3 = new Paragraph();    paragraph3.setAlignment(Element.ALIGN_LEFT);    document.add(new Paragraph(new Phrase("Left...", red))); -- Cumprts,Carlos Bergueira

[iText-questions] Basic question

2006-01-13 Thread Carlos Bergueira
... Date and time"));    document.add(new Paragraph(new Date().toString()));     } catch (DocumentException de) {  de.printStackTrace();   System.err.println("document: " + de.getMessage());    }     document.close();  } }-- Cumprts,Carlos Bergueira