XML and PDF files

Post Reply
LasseThid
Advanced member
Posts: 353
Joined: Tue Mar 03, 2015 2:30 pm
Location: Molndal, Sweden

XML and PDF files

Post by LasseThid »

Is it possible to read data from an XML file containing information for more than one PDF file and then embed the data in the correct PDF file, or is it better to have one XML per PDF?

From an XML file like this...

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<order>
	<pof>ordernumber</pof>
	<system>client</system>
	<products>
		<product1>
			<filename>file_1.pdf</filename>
			<type>product_type</type>
			<quantity>qty</quantity>
			<paper>stock_name</paper>
			<color>front+back</color>
			<width>X</width>
			<height>Y</height>
			<weight>Z</weight>
		</product1>
		<product2>
			<filename>file_2.pdf</filename>
			<type>product_type</type>
			<quantity>qty</quantity>
			<paper>stock_name</paper>
			<color>front+back</color>
			<width>X</width>
			<height>Y</height>
			<weight>Z</weight>
		</product2>
		<product3>
			<filename>file_3.pdf</filename>
			<type>product_type</type>
			<quantity>qty</quantity>
			<paper>stock_name</paper>
			<color>front+back</color>
			<width>X</width>
			<height>Y</height>
			<weight>Z</weight>
		</product3>
	</products>
</order>
...I would like to embed the product1 data into file_1.pdf, the product2 data into file_2.pdf and so on.

If it's possible how do I do it?

Thanks in advance
Enfocus Switch, Enfocus PitStop Server, Enfocus PDF Review, HP SmartStream& Kodak Prinergy with RBA
Offset 72x102, Offset Large Format, Digital Large Format and Digital print.
dkelly
TOP CONTRIBUTOR
Posts: 658
Joined: Mon Nov 29, 2010 8:45 pm
Location: Alpharetta GA USA
Contact:

Re: XML and PDF files

Post by dkelly »

Unless you want to write a custom javascript or XSL it would be easier to create a separate XML for each PDF.
LasseThid
Advanced member
Posts: 353
Joined: Tue Mar 03, 2015 2:30 pm
Location: Molndal, Sweden

Re: XML and PDF files

Post by LasseThid »

Thanks.

I'll have the customer generate one XML per PDF file then.
Enfocus Switch, Enfocus PitStop Server, Enfocus PDF Review, HP SmartStream& Kodak Prinergy with RBA
Offset 72x102, Offset Large Format, Digital Large Format and Digital print.
Post Reply