Open XDP file in Adobe Reader DC?
How to open XDP file in Adobe Reader DC?
FYI: Opening XDP files in Adobe Reader don't populate static XFA PDF forms when using URLs instead using the file system path.
PDF link:
fdftoolkit.net/examples/xfa-static2.pdf
The static XFA PDF is not populated with the XDP data. And it just downloads a blank PDF form when the XDP is opened in Adobe Reader.
<?xml version="1.0" encoding="UTF-8"?>
<?xfa generator="XFA2_4" APIVersion="2.6.7120.0"?>
<xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/">
<xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">
<xfa:data>
<topmostSubform>
<FULLNAME>STATIC XFA</FULLNAME>
<RADIOBUTTON>True</RADIOBUTTON>
<SIGNATURE></SIGNATURE>
<SUBMIT></SUBMIT>
<RESET></RESET>
<CHECKBOX>True</CHECKBOX>
<COMBOBOX>Item B</COMBOBOX>
<LISTBOX>
<value>Item B</value>
<value>Item D</value>
</LISTBOX>
<EMAIL>me@domain.com</EMAIL>
</topmostSubform>
</xfa:data>
</xfa:datasets>
<pdf href="http://www.fdftoolkit.net/examples/xfa-static2.pdf" xmlns="http://ns.adobe.com/xdp/pdf/"/>
</xdp:xdp>
It works if I set the PDF path in the XDP file to a File System Path instead of a URL: Ex: "C:\webroot\xfa-static2.pdf"
<?xml version="1.0" encoding="UTF-8"?>
<?xfa generator="XFA2_4" APIVersion="2.6.7120.0"?>
<xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/">
<xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">
<xfa:data>
<topmostSubform>
<FULLNAME>STATIC XFA</FULLNAME>
<RADIOBUTTON>True</RADIOBUTTON>
<SIGNATURE></SIGNATURE>
<SUBMIT></SUBMIT>
<RESET></RESET>
<CHECKBOX>True</CHECKBOX>
<COMBOBOX>Item B</COMBOBOX>
<LISTBOX>
<value>Item B</value>
<value>Item D</value>
</LISTBOX>
<EMAIL>me@domain.com</EMAIL>
</topmostSubform>
</xfa:data>
</xfa:datasets>
<pdf href="C:\webroot\xfa-static2.pdf" xmlns="http://ns.adobe.com/xdp/pdf/"/>
</xdp:xdp>
Is this a bug or a feature?
Message was edited by: Nick K
