Re: [iText-questions] question about table header and onOpenDocument

2010-06-07 Thread Keith O
Hello, > Date: Mon, 7 Jun 2010 09:43:44 -0400 > From: michelleyzh...@gmail.com > To: iText-questions@lists.sourceforge.net > Subject: [iText-questions] question about table header and onOpenDocument > > In order to add a table as header, I mimic the code from: > http://www.1t3xt.info/examples/br

Re: [iText-questions] form flattening causing data loss

2010-06-07 Thread Paulo Soares
If the PDF is a static XFA you can flatten it. However, it looks like you have a dynamic XFA and those can't be flattened by iText(Sharp). Paulo - Original Message - From: gregg.gilb...@sungard.com To: itext-questions@lists.sourceforge.net Sent: Monday, June 07, 2010 9:22 PM

Re: [iText-questions] form flattening causing data loss

2010-06-07 Thread Leonard Rosenthol
Yup! LiveCycle Designer == XFA. The best way is to extract the XML from the PDF (iText provided API), use standard XML tools to manipulate the grammar, then put it back (iText APIs). Leonard From: gregg.gilb...@sungard.com [mailto:gregg.gilb...@sungard.com] Sent: Monday, June 07, 2010 4:23 PM

Re: [iText-questions] form flattening causing data loss

2010-06-07 Thread Gregg.Gilbert
Thanks for responding. I definitely will plead ignorance to a lot of thisvery new at dealing with Adobe forms and filling them. Learning on the fly with lots of googling to find examples of what I need to do. I was not the author of the forms. They were handed to me, along with a prot

[iText-questions] Stream Chunks - MS returned by PdfStamper stamper = new PdfStamper(reader, ms);

2010-06-07 Thread Cameron Maxwell
SCENARIO So long as I use filestream or HttpWebRequest req = (HttpWebRequest)WebRequest.Create(documenturl); HttpWebResponse response = (HttpWebResponse)req.GetResponse(); I can chunk the stream just fine. I need iText so I can use the owner password feature Reader reader = new PdfReader

Re: [iText-questions] form flattening causing data loss

2010-06-07 Thread Leonard Rosenthol
I am confused. Those seem to be XFA-based form names, yet you are using the AcroForm APIs to fill and then flatten them. You can NOT "cross the streams". Leonard From: gregg.gilb...@sungard.com [mailto:gregg.gilb...@sungard.com] Sent: Monday, June 07, 2010 12:03 PM To: itext-questions@lists.s

Re: [iText-questions] form flattening causing data loss

2010-06-07 Thread Mark Storer
Going by the field names, you're flattening an XFA form. I'm surprised it works at all. In other words: Not Supported. What you can do is edit the XFA's XML so that the fields in question are read-only. I'm not sure how you'd do that. Someone asked this recently and Leonard posted a lin

[iText-questions] form flattening causing data loss

2010-06-07 Thread Gregg.Gilbert
Hi, I have an issue where fields that repeat on each page of a form, like Name, have their values disappear after flattening the form. The name field is on the top of each page of the form. Don't want unique field names on the form (which I know would solve the problem). So here are the fi

Re: [iText-questions] itext --- That assembly does not allow partially trusted callers.

2010-06-07 Thread William K. Goodbody
See this Bug Report for the problem & Fix. This usually occurs in a shared hosting environment. We have used this fix for a couple of months without a problem. http://sourceforge.net/tracker/?func=detail &

[iText-questions] itext --- That assembly does not allow partially trusted callers.

2010-06-07 Thread Tania Miguel
Hello, I am using itext to create pdf . In my computer the application works OK, however when I deploy it in goddy.com . the following error occurr . Please help me. I have to deliver the application to my client as soon as possible. . THANK YOU Tania Miguel Security Exception Description:

[iText-questions] question about table header and onOpenDocument

2010-06-07 Thread Michelle Zhang
In order to add a table as header, I mimic the code from: http://www.1t3xt.info/examples/browse/?page=example&id=395 However, the result I got was not the same as the one on the website. The header and the footer only show once on the first page. Can anyone help? Below is my code: main.cs: pr

[iText-questions] iTextSharp img on HTML conversion

2010-06-07 Thread Manfred Jehle
Hi I try to generate a PDF File with iTextSharp from a HTML - Text and Table content works perfect. Images are positioned wrong - the image flows not in the text at the right position! I expect first the h1 part and than the image - I get the H1 part and the Image is in the background and the

[iText-questions] Paragraph negative spacing weirdness in PdfPTables

2010-06-07 Thread fhomasp
Hey, I seem to be having another issue using PdfPTables. As always I might just be doing something wrong, we'll see. I'm building a list with PdfPCells which are added to a table as long as the table has enough space. The max space of the table is the max size of the whole document. So basica