Genesys CTI User Forum

Genesys CTI User Forum => Genesys-related Development => Topic started by: LucasPenen on November 28, 2018, 07:22:54 PM

Title: WDE Hostname CustomModule
Post 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!
Title: Re: WDE Hostname CustomModule
Post by: PeteHoyle on November 30, 2018, 02:15:31 PM
That will be the host of Configuration Server:

            [code]
            IConfigurationService confService = container.Resolve<IConfigurationService>();
            log.Debug("Configuration Service Host: " + confService.ConfigServerHost);
            [/code]