Hi guys,
I’m developing a softphone based on .Net PSDK.
My question comes on how to do something like GAD does, input your Genesys user name and then on next screen show the PBX login ID.
I have looked for functions and found this way:
Using RequestReadObjects with CfgPerson and then CfgAgentLogin
Hi Cavagnaro,
With RequestReadObjects function, the data returned in XML format , and then you need to manipulate this for extract the needed info.
For me, the easiest way to obtain this info is consult directly to config database, with a simple query of 3 tables :
cfg_person → Username
cfg_agent_login → AgentLogin ID
cfg_login_info → Join of Persons and AgentLogins
I know it’s not recommended to consult the database directly, but it’s a simple query.
Anyway, if you find another way to do this, please share with us ;D