Setting or Modifying Device Client Job Properties

The Device Client can set or change information acquired from the device with changes to the Configuration.xml file in the Web Service. There is a set of device data in the collection prDeviceMetaData().

See some examples below.

  • SENDER_DEVICE_NAME
  • SENDER_DEVICE_DATE
  • SENDER_DEVICE_AUTH_ID

For each feature in each Group, there is a section for Transformations, denoted as <Transformations/>.

Each property to be set must be enclosed in a set of <Transform> tags.

Example 1: Setting the delivered document name to show the device and scan time as device_time

<Transformations>

<Transform>

<Set>\\prDeliveredDocumentName </Set>

<Value>%\\prDeviceMetaData(SENDER_DEVICE_NAME)%_%\\prDeviceMetaData(SENDER_DEVICE_DATE)% </Value>

</Transform>

</Transformations>

Example 2. Setting the originator on an Embedded Directive or MyAccuRoutedelivered job

<Transformations>

<Transform>

<Set>\\prOverrides\prOriginator </Set>

<Value>%\\prDeviceMetaData(SENDER_DEVICE_AUTH_ID)% </Value>

</Transform>

</Transformations>

Example 3. Setting a template variable

<Transformations>

<Transform>

<Set>\\prTemplateVars(SENDER_NAME) </Set>

<Value>%\\prDeviceMetaData(SENDER_DEVICE_AUTH_NAME)% </Value>

</Transform>

</Transformations>

See also

About Devices