Versions Compared

Key

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

...

  • Internally the JobScheduler works with the ISO-8859-1 encoding (Latin1) on all platforms.
  • Externally External files for job objects (jobs, job chains, orders, schedules etc.) can be submitted with
    • the ISO-8859-1 encoding

      Code Block
      languagexml
      titleEncoding sample
      collapsetrue
      <?xml version="1.0" encoding="ISO-8859-1"?>
      <job  title="JITL Job for JobScheduler Advanced Data Exchange" order="yes" stop_on_error="no">
      ...
      </job>
    • the UTF-8 encoding if the characters used are in the range of Unicode 0-127

      Code Block
      languagexml
      titleEncoding sample
      collapsetrue
      <?xml version="1.0" encoding="UTF-8"?>
      <job  title="JITL Job for JobScheduler Advanced Data Exchange" order="yes" stop_on_error="no">
      ...
      </job>

       

    • provided that the characters used are in scope of the JobScheduler XSD schema that limits the allowed character. The XSD schema is available with the file ./config/scheduler.xsd restricts characters to the pattern: [\n\r\t&#x20;-&#x7e;&#xa0;-&#xff;]*

...