Howdy, The synopsis of what I wish to do is have an application that lives in the servlet context (application life time) and replace data in table cells that were established when the servlet was initialized and then produces a pdf file.
There does not seem to be a facility to replace individual cells. I can add/removerows and columns, but this is much more than I need. Simply adding a cell at position does not replace the existing data. This essense of the class: public class XxServlet { Table t1 = null ; Table t2 = null ; initialize() { // create table t1 setting static columns // create table t2 setting its static columns } goGet() { // process expected variables from parameter and session // define pdf document and byteArray to write to // fill in dynamic cells in t1 // add t1 to document // fill in dynamic cells in t2 // add t2 to document // close pdf document // set content headers and write bytes } } Justification for this senerio to decrease execution time, and minimize object creation - thus garbage collection. ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions