ConfigInterface configManager = this.getConfigManager();
String xml = configManager.getConfigItem("jpwttConfig");
if (xml == null) {
throw new ApsSystemException("Configuration item not present: jpwttConfig");
}
WttConfigDOM configDOM = new WttConfigDOM();
this.setConfig(configDOM.extractConfig(xml));
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "loadConfigs");
throw new ApsSystemException("Errore in fase di inizializzazione", t);
}
}