GAS Configuration

GAS configuration for Kerberos requires updates to the application server configuration file and the application configuration file.

There are three parts of GAS configuration:

  1. Configure the Authentication part of the GAS configuration file (default as.xcf)
  2. Edit application configuration file to use Kerberos
  3. Check the account that runs the GAS

Genero Application Server configuration (as.xcf)

The relevant part is the AUTHENTICATION element.
<AUTHENTICATION Type="KERBEROS">
   <REALM></REALM>
</AUTHENTICATION>
  1. Type: Currently only KERBEROS type is supported
  2. REALM: Overwrite default Kerberos realm.

Application configuration (app.xcf)

Add <AUTHENTICATION>KERBEROS</AUTHENTICATION> in application configuration:
<?xml version="1.0" encoding="UTF-8"?>
<APPLICATION Parent="defaultgwc">
  <EXECUTION>
    <PATH>$(res.path.fgldir.demo)/Widgets</PATH>
    <AUTHENTICATION>KERBEROS</AUTHENTICATION>
  </EXECUTION>
</APPLICATION>