I need to show a PDF file with data, this data is a XFDF file. So the process works in my machine I open the XFDF and automatically the PDF appears with a data. The problem is when I make this process in a web environment, the HTML page does not show anything.
I have 2 files: the PDF is TestForm1.pdf and the XFDF is TestForm1.xfdf.
I can embed an empty PDF, and it works:
<objecttype="application/pdf"data="TestForm1.pdf"width="300"height="200"></object>
But following (with the XFDF) does not work:
<objecttype="application/vnd.adobe.xfdf"data="TestForm1.xfdf"width="300"height="200"></object>
The code of my XFDF file is:
<?xml version="1.0" encoding="UTF-8"?>
<xfdfxmlns="http://ns.adobe.com/xfdf/"xml:space="preserve">
<fhref="TestForm1.pdf"/>
<fields>
<fieldname="Name_UeSd4O*CXTlIKGfP8CI1Lg">
<value>Aaron</value>
</field>
</fields>
<idsoriginal="F76AE09E68036941A6318DF3754A9CD1"modified="4FB18F258D7B8F4699CCCF49538E852F"/>
</xfdf>
Please I need help or guide about this issue. Regards.