GAS configuration encoding files

Configuration for the Genero Application Server is provided in XML files (with .xcf file extension), which can include international characters and multiple languages.

In XML files the UNICODE standard UTF-8 is typically used.
Note:

The charset defined in XML files for the GAS takes precedence over system locale settings.

Example in as.xcf with UTF-8 (UNICODE) character set:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<CONFIGURATION ...>
...

Example in as.xcf with ISO-8858-6 (Arabic) character set:

<?xml version="1.0" encoding="ISO-8859-6" standalone="yes"?>

<CONFIGURATION ...>
...

For more information on encoding in an XML file, see Extensible Markup Language - Character Encoding.