XFA stands for XML Forms Architecture, a family of proprietary XML specifications that was suggested and developed by JetForm to enhance the processing of web forms. It can be also used in PDF files starting with PDF 1.5 specification. XML Forms Architecture was not standardized as an ISO standard

learn more… | top users | synonyms

0
votes
2answers
53 views

How can I set XFA data in a static XFA form in iTextSharp and get it to save?

I'm having a very strange issue with XFA Forms in iText / iTextSharp (iTextSharp 5.3.3 via NuGet). I am trying to fill out a static XFA styled form, however my changes are not taking. I have both ...
0
votes
0answers
71 views

iText XfaForm process huge data

I want to design a XFA PDF template, and then fill the data into this PDF. According to the examples in "iText in Action", it will need the xml dom data as intermediate storage. But my problem is that ...
1
vote
1answer
391 views

itextsharp XFA Document in C#

I am trying to get a simple list of all the fields in my XFA form. I am using this code: private void ListFieldNames() { string pdfTemplate = @"C:\Projects\iTextSharp\SReport.pdf"; ...
0
votes
1answer
144 views

XPath not working correctly with XFA

I have a dynamic PDF form that has a DropDownList. I'm using iTextSharp to try and modify the values inside the PDF before sending it out to the client. Here's what I'm trying, as per an answer in ...
0
votes
0answers
94 views

Detect dynamic XFA with pdfclown

I have a XFA Form ; i am using PDfClown libraries; I want to detect programatically if the form is XFA or AcroForm what code must I use in C# to detect this. I have tried: ...
1
vote
0answers
170 views

Free software to fill xfa forms in pdf

I have pdf file with XFA forms. I need to populate this pdf with data and send it to user. I am looking for a library will help me in that. This library needs to be: - free, meaning that I can use it ...
1
vote
1answer
216 views

Fill XFA forms with iText 2.1.7

I have to fill a pdf form which has xfa fields. I was thinking about using iText for this task. Still, I cannot use latest iText, beacuase of it's license (see this answer). I am already familiar with ...
2
votes
1answer
516 views

Detect dynamic XFA with iText (v4.2.0 MPL/GPL)?

I'm using the last free (as in free beer) version of iText before it changed into free as in free speech. I need to make pre-populated PDF/XFA forms read-only (as in no inputs, such as text, ...
1
vote
0answers
208 views

Fill static pdf with xml source

I'm producing dynamic pdf-files that are filled with an xml data source: The pdf is created in LiveCycle Designer, then I'm using iTextSharp to fill it dynamically: ...
0
votes
1answer
169 views

Remove or Hide field in PDF document using iTextSharp

Is there a way to remove or hide field in PDF document using iTextSharp library. It seems that iTextSharp can not do this for PDF templates created in LiveCycle (xfa format).
1
vote
1answer
764 views

How can i programatically read in the both AcroFields and XFA fields for filling?

I am writing a C# application that will need to read in both XFA and AcroField templates. Due to the size of the company and the number of existing PDF documents that may be hooked up to the ...
1
vote
1answer
139 views

How to modify a specific character in an existing XFA PDF?

I'm stuck on a crazy project that has me looking for a strange solution. I've got a XFA PDF document generated by an outside party. There's are several checkmark characters '✓' on the PDF's that I ...
1
vote
1answer
212 views

How to remove a XML node?

I have some troubles in development of Acrobat. I use a XML file in a PDF and I read and write data. I can use XPath to search the data I want by some conditions. But I can't remove a node. I've read ...
0
votes
1answer
300 views

How to manipulate the XML data using XPath

I have trouble in manipulating XML file data in Acrobat JS. I already have a XML document and have read it.Now the XML is as below: <?xml version="1.0" encoding="UTF-8"?> <xfa:data ...
1
vote
1answer
161 views

How to convert FMPXMLRESULT to XFA?

I'm trying to create an XSL that will convert FMPXMLRESULT file to a XFA compliant xml file. The purpose is to fill a pdf form. The problem is all field names in Filemaker are different from the pdf ...
1
vote
2answers
437 views

C# to read XFA form data

I am trying to programmatically read the field values from a Livecycle created form. I have beed researching days now and it seems impossible to find a solution. I tried opening the document using the ...
1
vote
1answer
1k views

Fill xfa pdf form using itext in java

I have to fill a pdf form (used to submit data online) which is having xfa fields and using iText for this. I am able to generate the reader-enabled pdf document but fields are not filled. Please ...
0
votes
2answers
913 views

How To programmatically detect XFA (Adobe XML Forms Architecture) dynamic PDF

I have a system that converts pdf to tif. Basically it's a program written in csharp that uses iTextSharp to get metadata about the pdf and pdf2tif (http://pdftotif.sourceforge.net/) to convert to the ...
1
vote
0answers
215 views

Convert XFA based forms to HTML

Is there a tool or converter available that can transform my XFA based forms/documents over to HTML (preserving the look and feel of the form)? I'm looking to provide the capability to render such ...
0
votes
2answers
2k views

How to load XML into datasets on load in a dynamic PDF form (LiveCycle)?

I need to pre-fill a dynamic PDF's fields so my users can edit it and submit back. I am using Adobe ColdFusion CFPDFFORM tag that can load XML data into a PDF and make a new populated PDF. ...
10
votes
4answers
8k views

Using iText (iTextSharp) to populate XFA form fields in PDF?

I need to populate XFA form fields in a PDF (created with Adobe LiveCycle Designer). We're attempting to use iText (actually iTextSharp with C#) to parse the PDF, populate the XFA fields and then ...
3
votes
1answer
2k views

List attributes of an XFA Object using Javascript in a PDF

I'm trying to create a PDF document with several text fields that can grow in height up to some maximum value. Due to the constraints of the project, I'm using Adobe Designer 7, which happily allows ...
1
vote
4answers
876 views

How to parse a .xfa file

Hoping that someone has some info on how to parse a xfa file. I can parse csv or xml files just fine, but an xfa one has come along and I'm not familar with the format. Looks like tab delimited body ...