...
- 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 language xml title Encoding sample collapse true <?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 language xml title Encoding sample collapse true <?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 -~ -ÿ]*
...