Workflow Template Example

Here is an example of a work XML template that can be used in our Remote Connections Workflow Templates. Note that while this XML data has worked for other customers, it may need to be altered slightly to fit your needs and is only provided as an example.


<?xml version="1.0" encoding="UTF-8"?>

{{#each OrderItems}}

<UltimateImposition>

    <Redirection>

        <PrintJob JobID="{{Number}}">

            <QueueName>

                <Name>Impostrip</Name>

            </QueueName>

            <PaperSize>

                <Width Value="{{Stock.Size.Width}}" Unit="INCH" />

                <Height Value="{{Stock.Size.Length}}" Unit="INCH" />

            </PaperSize>

            <TrimSize>

                <Width Value="{{FlatSize.Width}}" Unit="INCH" />

                <Height Value="{{FlatSize.Length}}" Unit="INCH" />

            </TrimSize>

            <Documents>

                <DocFile>

                    <URL>{{#each Files}}{{Url}}{{/each}}</URL>

                    <PageRange UseAllPages="true" />

                    <Quantity>{{Quantity}}</Quantity>

                </DocFile>

            </Documents>

        </PrintJob>

    </Redirection>

</UltimateImposition>

{{/each}}