Re: [iText-questions] Concatenating multiple PDF's using Servlet

2011-10-17 Thread Tim Troy
Hi Balder, Ed and All, I'm sorry for the poorly worded request for help. I was looking for advise on the general approach I should/could use. Not looking for example code. Just wanted to be pointed in the right direction. I tried it the way I thought it should work and that is not the way to

Re: [iText-questions] Concatenating multiple PDF's using Servlet

2011-10-17 Thread McGee, Edwin F. Sr.
You are on the right track referring to the text, but there is also a plethora of examples on the iText web site and a simple Google search will also reveal some ideas. You can also search the archives for this list. Basically, you need to gather all of your documents from the database like you

Re: [iText-questions] Concatenating multiple PDF's using Servlet

2011-10-15 Thread Balder VC
I don't have time to look into it now, but it's usually a good idea to try it in a stand alone app if it works there, there is something with your servlet code. For the page numbers you could use PageEvent. Note, without an example of your code we can't really help you. Kind regards Balder

[iText-questions] Concatenating multiple PDF's using Servlet

2011-10-14 Thread Tim Troy
I have requirements as follows: Using Java Servlets, print pdf reports with page numbers, 1 of 3, 2 of 3, etc... I did this using PdfpTables and then applying a Stamper for the page numbering. The reports are dynamically generated from database rows. Life is good for one report at a time. Th