Genesys CTI User Forum
Genesys CTI User Forum => Genesys-related Development => Topic started by: LucasPenen on November 28, 2018, 07:22:54 PM
-
How can I get hostname that agent puts in the WDE login from a Custom Module of an custom extension?
Thank you for all!
-
That will be the host of Configuration Server:
[code]
IConfigurationService confService = container.Resolve<IConfigurationService>();
log.Debug("Configuration Service Host: " + confService.ConfigServerHost);
[/code]