Application DesignBusiness Rules for Generator Processes

A job source is a special type of business rule that is required by generator processes. It must include both a business rule and data processors. The business rule must contain a Data Pipe business rule component. The data processors must include a Process Generator, which creates additional print requests.

A job source must use the following structure and adhere to XML syntax.

Important! Content in a business rule is case sensitive. This includes business rule component names, attributes, and values.

ClosedAbout the syntax documentation

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

<businessRules>

 

   <businessRules configuratorSupport="true|false">

      <!-- Required. Specify a dataPipe business rule component.
      For more information, see dataPipe Business Rule Component. -->

 

      <!-- Optional. Specify other business rule components.
      For more information, see Business Rule Components. -->

   </businessRule>

 

   <dataProcessors>

      <!-- Required. Specify a processGenerator. -->

      <processGenerator name="This_component">

         <process ignoreErrors="false|true">

 

            <!-- Required. Specify the path to a process in Loftware Enterprise SP. -->

            <processUrl>Path_in_Loftware Enterprise SP</processUrl>

 

            <!-- Provide data to the process. You can include
            multiple entries. -->

            <data>

               <!-- The name and value may be either static data or a 
               location prefix and key referring to a data map entry. -->

               <entry name="Name_of_data_map_entry">

                  <value>Value_of_data_map_entry</value>

               </entry>

               <!-- Add the entire data map to the print job detail. -->

               <entry name="!FULLMAP!">

                  <value>${/}</value>

               </entry>

            </data>

 

         </process>

      </processGenerator>

   </dataProcessors>

 

</businessRules>

Tip: For assistance with a business rule that you have created or to have Loftware create business rules for you, contact Loftware's Professional Services Group.