You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Current »

Scope

  • The JobScheduler provides limited support for Unicode.
  • The product suite is moving towards Unicode support and therefore the components provide different levels of support.
  • The below information states the extent of Unicode support per component.

JobScheduler Engine

Job Objects

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

      Encoding sample
      <?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

      Encoding sample
      <?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;]*

File Order Sources

  • For file name characters apply the same restrictions as for job objects.

stdout/stderr and Logging

  • Characters that are outside of the above indicated scope for job objects are arbitrarily converted to ISO-8859-1.

JOE - Job Editor

  • JOE creates job object files exclusively with ISO-8859-1 encoding.
  • JOE can read job object files with the UTF-8 encoding and ISO-8859-1 encoding within the limits as stated above for job objects. 
  • JOE relies on the fact that the file encoding corresponds to the XML header.

JID - JobScheduler Integrated Dashboard

  • JID does makes exclusively use of the database. 
  • Technically JID should be capable to process UTF-8 encodings, however, as the JobScheduler writes characters with UTF-8 encoding within the limits as stated above for job objects, therefore JID does not receive a more extended UTF-8 character set.

JOC - JobScheduler Operations Centre

  • JOC receives answers within the XML API from JobScheduler. Such answers are UTF-8 encoded within the limits as stated above for job objects.
  • Technically JOC should be capable to work with a complete UTF-8 encoding.

Relationship with Internationalization

  • Starting from future Unicode support improved internationalization will be in scope.
  • As of now texts such as
    • error messages, warnings and info messages,
    • GUI texts,
    • log file entries,
    • help messages and tooltip texts
    • are available in English and German only.
  • A major topic on the JobScheduler road-map is the translation of all texts.

 

  • No labels