Genesys CTI User Forum

Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: shahzeb on September 09, 2019, 07:28:01 AM

Title: Extract the Annex tab sections from the WDE application
Post by: shahzeb on September 09, 2019, 07:28:01 AM
Hello Guys,

I want some help. Trying to extract the sections from the Annex tab from the WDE application, and not knowing on how to get my hands on that data at all.
I know i can get the Options from the following code (below), but how to extract the sections in Annex tab then ? Any idea 

IConfigurationService configService = container.Resolve<IConfigurationService>();
KeyValueCollection options =  configService.MyApplication.Options;
Title: Re: Extract the Annex tab sections from the WDE application
Post by: cavagnaro on September 09, 2019, 01:25:42 PM
What exactly do you mean by extract? Extract what? Remove?

Enviado de meu SM-G9650 usando o Tapatalk

Title: Re: Extract the Annex tab sections from the WDE application
Post by: hsujdik on September 09, 2019, 02:55:37 PM
KeyValueCollection annex = configurationService.MyApplication.FlexibleProperties;
Title: Re: Extract the Annex tab sections from the WDE application
Post by: PeteHoyle on September 09, 2019, 07:27:54 PM

To get the annex values of your application I thought it was:

[code]this.configService = configService;
KeyValueCollection kvc = configService.MyApplication.UserProperties;[/code]
Title: Re: Extract the Annex tab sections from the WDE application
Post by: hsujdik on September 09, 2019, 07:38:05 PM
[quote author=PeteHoyle link=topic=11431.msg52101#msg52101 date=1568057274]

To get the annex values of your application I thought it was:

[code]this.configService = configService;
KeyValueCollection kvc = configService.MyApplication.UserProperties;[/code]
[/quote]

Oops... yes. That is the right one