Re: [iText-questions] updated template not working

2010-08-10 Thread 1T3XT info
java flunkie wrote:
> We use a pdf template and acrofields in order to create tailored pdf's for
> each customer.  I was tasked with modifying the pdf template to include a
> new dynamic field and some new hardcoded fields.  I uploaded the new
> template pdf in eclipse to run in a java app.  When I run the app the new
> template is being picked up but all of the dynamic data is being omitted
> except for one field.  If I revert back to the old pdf template then it
> prints the template and all the dynamic output correctly(minus the new
> stuff).  Any ideas why the new template isn't printing the dynamic fields?

Maybe the form no longer uses AcroForm technology?
Maybe you've switched to XFA?
Or maybe the field names are hardcoded in your program,
and maybe you changed the field names in the template
(for instance by adding a hierarchy).
In any case: it worked, and you broke it, but since we
don't know what you did to break it, we can only guess.
The above guesses are the most likely causes.

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/


Re: [iText-questions] updated template not working

2010-08-05 Thread Paulo Soares
I mean Designer created xfa dynamic forms.

Paulo 

-Original Message-
From: java flunkie [mailto:gadk...@pgac.com] 
Sent: Thursday, August 05, 2010 1:41 PM
To: itext-questions@lists.sourceforge.net
Subject: Re: [iText-questions] updated template not working


Are the following classes part of Itext?  If so, it does support dynamic
fields, we have a base template pdf that is the same for everyone and then
we put customer unique data on individual forms in order to create customer
specific pdf's. I know the list below is not a complete list, this list
comes from one class used in our form creation, there are many more.

import com.lowagie.text.pdf.AcroFields;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfImportedPage;
import com.lowagie.text.pdf.PdfReader;
import com.lowagie.text.pdf.PdfStamper;
import com.lowagie.text.pdf.PdfWriter;
-- 
View this message in context: 
http://itext-general.2136553.n4.nabble.com/updated-template-not-working-tp2312647p2314806.html
Sent from the iText - General mailing list archive at Nabble.com.

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/


Aviso Legal:
Esta mensagem é destinada exclusivamente ao destinatário. Pode conter 
informação confidencial ou legalmente protegida. A incorrecta transmissão desta 
mensagem não significa a perca de confidencialidade. Se esta mensagem for 
recebida por engano, por favor envie-a de volta para o remetente e apague-a do 
seu sistema de imediato. É proibido a qualquer pessoa que não o destinatário de 
usar, revelar ou distribuir qualquer parte desta mensagem. 

Disclaimer:
This message is destined exclusively to the intended receiver. It may contain 
confidential or legally protected information. The incorrect transmission of 
this message does not mean the loss of its confidentiality. If this message is 
received by mistake, please send it back to the sender and delete it from your 
system immediately. It is forbidden to any person who is not the intended 
receiver to use, distribute or copy any part of this message.


--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/

Re: [iText-questions] updated template not working

2010-08-05 Thread java flunkie

Are the following classes part of Itext?  If so, it does support dynamic
fields, we have a base template pdf that is the same for everyone and then
we put customer unique data on individual forms in order to create customer
specific pdf's. I know the list below is not a complete list, this list
comes from one class used in our form creation, there are many more.

import com.lowagie.text.pdf.AcroFields;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfImportedPage;
import com.lowagie.text.pdf.PdfReader;
import com.lowagie.text.pdf.PdfStamper;
import com.lowagie.text.pdf.PdfWriter;
-- 
View this message in context: 
http://itext-general.2136553.n4.nabble.com/updated-template-not-working-tp2312647p2314806.html
Sent from the iText - General mailing list archive at Nabble.com.

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/


Re: [iText-questions] updated template not working

2010-08-04 Thread Paulo Soares
iText doesn't support dynamic forms.

Paulo 

-Original Message-
From: java flunkie [mailto:gadk...@pgac.com] 
Sent: Tuesday, August 03, 2010 10:49 PM
To: itext-questions@lists.sourceforge.net
Subject: [iText-questions] updated template not working


We use a pdf template and acrofields in order to create tailored pdf's for
each customer.  I was tasked with modifying the pdf template to include a
new dynamic field and some new hardcoded fields.  I uploaded the new
template pdf in eclipse to run in a java app.  When I run the app the new
template is being picked up but all of the dynamic data is being omitted
except for one field.  If I revert back to the old pdf template then it
prints the template and all the dynamic output correctly(minus the new
stuff).  Any ideas why the new template isn't printing the dynamic fields?
-- 
View this message in context: 
http://itext-general.2136553.n4.nabble.com/updated-template-not-working-tp2312647p2312647.html
Sent from the iText - General mailing list archive at Nabble.com.

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/


Aviso Legal:
Esta mensagem é destinada exclusivamente ao destinatário. Pode conter 
informação confidencial ou legalmente protegida. A incorrecta transmissão desta 
mensagem não significa a perca de confidencialidade. Se esta mensagem for 
recebida por engano, por favor envie-a de volta para o remetente e apague-a do 
seu sistema de imediato. É proibido a qualquer pessoa que não o destinatário de 
usar, revelar ou distribuir qualquer parte desta mensagem. 

Disclaimer:
This message is destined exclusively to the intended receiver. It may contain 
confidential or legally protected information. The incorrect transmission of 
this message does not mean the loss of its confidentiality. If this message is 
received by mistake, please send it back to the sender and delete it from your 
system immediately. It is forbidden to any person who is not the intended 
receiver to use, distribute or copy any part of this message.


--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/

[iText-questions] updated template not working

2010-08-04 Thread java flunkie

We use a pdf template and acrofields in order to create tailored pdf's for
each customer.  I was tasked with modifying the pdf template to include a
new dynamic field and some new hardcoded fields.  I uploaded the new
template pdf in eclipse to run in a java app.  When I run the app the new
template is being picked up but all of the dynamic data is being omitted
except for one field.  If I revert back to the old pdf template then it
prints the template and all the dynamic output correctly(minus the new
stuff).  Any ideas why the new template isn't printing the dynamic fields?
-- 
View this message in context: 
http://itext-general.2136553.n4.nabble.com/updated-template-not-working-tp2312647p2312647.html
Sent from the iText - General mailing list archive at Nabble.com.

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/