Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Configure the Holidays in the ./config/scheduler.xml file
    • In this case the Holidays are used by all Jobs and Orders.
    • But note that changes in the scheduler.xml require a JobScheduler restart.
    • You can either:
      • Add the following to the scheduler.xml file using a text editor:
        • Code Block
          languagexml
          titleSpecification of Saturday and Sunday as holidays every week
          <holidays >
            <weekdays >
              <day  day="6"/>
              <day  day="7"/>
            </weekdays>
          </holidays>
        • Please consider the correct sequence of elements in ./config/scheduler.xml when adding a <holidays> element, for details see Reference Documentation.

      • Use JOE to configure the scheduler.xml file using the Open JobScheduler Configuration button and navigating to the JobScheduler's config folder:

...