Within Adobe Acrobat XI, when editing PDF forms, there are functions under
Tools -> Forms -> More Form Options -> Import Data
Tools -> Forms -> More Form Options -> Export Data
Import Data takes an XML file and imports the data into the PDF. Export obviously creates an XML file from the data entered into the current form.
I need to mimic this functionality in a .Net application. (ideally web based).
Are there any 3rd party libraries (iTextSharp?) that can take a PDF file and an XML file and output a PDF that has imported the data from the XML? Or would using Acrobat native libraries be best for automating this?
Does anyone have an example of doing something similar to this using either a 3rd party library or Adobe components?
Note: The PDF form that I would need to import/export from is NOT created internally. Specifically I need to do this with a PDF form created by the patent office. (SB08a Information Disclosure Statement)
http://www.uspto.gov/patents/process/file/efs/guidance/updated_IDS.pdf
Thanks!