Questions tagged [xdp-pdf]

XML Data Package (XDP) is an XML 1.0 compliant format for packaging PDF content within an XML structure.

27 questions
9
votes
1 answer

Extract xdp or xfa from PDF

I created a PDF form with Adobe LiveCycle Designer. I'm now struggling to extract the data programmatically from the PDF after it's been filled out. I tried to do this using poppler (the qt4 binding, but I guess that doesn't matter), but apparently…
arsenbonbon
  • 748
  • 9
  • 22
4
votes
2 answers

How to convert XDP to PDF in Adobe LiveCycle ES3 via HTTP REST request

I have: LiveCycle server (ES3, JBOSS), Workbench, Designer. Using LC Desginer I convert PDF to XDP - it's template now. Now I need to convert that XDP file to PDF. So, I guess I should somehow call LiveCycle server by HTTP request, in body of this…
OZ_
  • 12,492
  • 7
  • 50
  • 68
3
votes
1 answer

XML::Twig - Inplace editing

I'm trying to append timestamp at the end of xdp file. I am using XML::Twig. On running the script timestamp (4619314911532861) gets added at the end but the output is coming on STDOUT instead of testdata.xdp. What am I…
Chankey Pathak
  • 21,187
  • 12
  • 85
  • 133
3
votes
1 answer

PDFBox bloated PDF file size

Using PDFBox can read Dynamic PDF created by livecycle. The code below reads then writes back the xml file that used to create the dynamic PDF. I bit concerned as the resulting file is quite large start out with 647kb pdf. The new pdf 14000kb. …
Jason Weh
  • 314
  • 4
  • 12
2
votes
3 answers

Populating PDF with XDP

I have a fill-in PDF that used to use a simple XFDF file to populate. Using VS.NET 2010 I read in the XFDF document and populate all the necessary information and populate the PDF using ds.WriteXML(XFDFName). The XFDF gets written and launched via…
coleman8er
  • 21
  • 1
  • 2
1
vote
1 answer

How to use adobes Live Cycle ES2 Java Api with PHP to convert XDP to PDF

I want to use Adobe's Live Cycle ES2 java api to through PHP to convert XDP files to PDF Following are the links from adobes help pages 1. http://help.adobe.com/en_US/livecycle/9.0/programLC/help/index.htm?content=000281.html 2.…
Yogesh
  • 928
  • 1
  • 8
  • 21
1
vote
0 answers

GRO and XDP programs/zero copy?

"GRO" is the Generic Receive Offload" mechanism that reassembles smaller packets into larger ones, probably at the NIC driver level(?) See also: Why am I receiving packet bigger than with raw packet? 1, as well as JLS2009: Generic receive Offload…
TheDiveO
  • 2,183
  • 2
  • 19
  • 38
1
vote
0 answers

AEM-REX-001-008: Unable to apply the requested usage rights to the given document

We have developed two interactive XDP which have some pre-population and binding of data and they are generated in interactive PDF. Whenever we deploy the XDP in our ETE environment everything is perfect and works fine. We have developed a rest API…
1
vote
0 answers

How to create a text field within a DDX file?

I'm trying to create an adobe form that consists in a text field inside a DDX file that contains properties such as watermarks and other options. Adobe DDX reference indicates that it supports XDP declarations but I've not been able to make it…
Joel Orona
  • 46
  • 5
1
vote
3 answers

Automating deployment with Livecycle

I am working on a project with Adobe LiveCyle Workbench ES4. I have been tasked with automating our deployment to produciton. This is for the entire project which includes LiveCycle, but I have very little LiveCycle experience. In our current…
Don Chambers
  • 3,798
  • 9
  • 33
  • 74
1
vote
0 answers

C# - getting a string other than the once returned by the function

I have a pdf the pdf does have the XFA part and since the standard XFA looks like ... I need to extract the XML into a…
user1926152
  • 235
  • 2
  • 8
  • 13
1
vote
1 answer

Binding Modified schema file to xsd file in livecycle designer tool

i am using adobe livecycle 8.2 for documents template generation, i am new to adobe livecycle designer tool. in my template we are using xsd file to bind data to xdp file. i have done some changes in schema file. and want to reflect changes in my…
user1463676
  • 55
  • 2
  • 7
0
votes
1 answer

Inserting an Image into a PDF using XDP

Problem: I'm trying to get an image to be displayed on a PDF that is generated using a XDP file. What I'm currently trying: I have a XDP file that is exported from a PDF. I have a textbox with the tag "my_image" on the pdf. Here's the code I'm…
strickland
  • 1,943
  • 5
  • 21
  • 40
0
votes
1 answer

Detecting XDP tags used in a PDF form

I'm writing a program to automatically populate a PDF form. It does so by creating an XDP file. I already know most of the xml tags to use in the XDP file, but there are some form elements in the PDF file I don't know the appropriate tag for. Is…
rampion
  • 87,131
  • 49
  • 199
  • 315
0
votes
0 answers

BPF TCP Checksum incorrect

I am trying to send a SYN ACK packet back to the client when they sent a SYN packet. I have this code: static inline void swap_mac_addresses(struct ethhdr *eth) { unsigned char tmp[ETH_ALEN]; memcpy(tmp, eth->h_source, ETH_ALEN); …
Fabian
  • 24
  • 4
1
2