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>If it's possible how do I do it?
Thanks in advance