Configuration file example

The following example will run the three methods nightly:

  • First, it runs the Send Email Reminders method to execute Workflow Activity Notification reminders at 00:02.
  • Second, it runs the Check Escalations method to automatically escalate and designated Workflow Activities at 00:12.
  • Finally, it runs the dailyUpdate method to update all active Project items in Aras Innovator at 00:22.
<?xml version="1.0" encoding="utf-8" ?>

<innovators>

  <innovator>

    <server>http://localhost/InnovatorServer</server>

    <database>InnovatorSolutions</database>

    <username>iservice</username>

    <password>innovator</password>

    <http_timeout_seconds>600</http_timeout_seconds>

    <job>

      <method>Send Email Reminders</method>

      <months>*</months>

      <days>*</days>

      <hours>0</hours>

      <minutes>2</minutes>

    </job>

    <job>

      <method>Check Escalations</method>

      <months>*</months>

      <days>*</days>

      <hours>0</hours>

      <minutes>12</minutes>

    </job>

    <job>

      <method>dailyUpdate</method>

      <months>*</months>

      <days>*</days>

      <hours>0</hours>

      <minutes>22</minutes>

    </job>

  </innovator>

  <eventLoggingLevel>0</eventLoggingLevel>

  <intervalMinutes>1</intervalMinutes>

</innovators>