Author Topic: How to query ConnID from Genesys frame work  (Read 7898 times)

Offline ivr_genesys

  • Newbie
  • *
  • Posts: 19
  • Karma: 0
How to query ConnID from Genesys frame work
« on: May 20, 2008, 12:21:21 PM »

Hi All

Goal: Trying to get CONNID from the Genesys framework into IVR application.

I used the following command and then try to parse the XML but for some reason I got nulll.

My question is: Can I directly query the framework by passing the variable CONNID ?
  or dose GenesysAdmin has to first set these values so that I can query later ?  Similaraly I need waittime also from frame work.

Are there any documentation on Framework ?  I could not find in Genesys tech support. Appreciate your great help.


String CRData_get = "CRData:get";

<object name="getuserdata" classid="<%=CRData_get%>">
  <param name="CONNID" expr="''"/>


Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Re: How to query ConnID from Genesys frame work
« Reply #1 on: May 20, 2008, 03:03:10 PM »
Hi,

The function "CRData:get" is used to get list of Attached Data key but ConnId is an attribute of the call not key in AttachedData. Use function "GetCallInfo" to get information like ANI, DNIS, ConnId etc. about a call.

You can find more information about IVR functions in the documentation for particular IVR driver (available on Genesys TechSupport website) or in the IVR SDK documentation (Genesys TechSupport website or DevZone).

R.

Offline ivr_genesys

  • Newbie
  • *
  • Posts: 19
  • Karma: 0
Re: How to query ConnID from Genesys frame work
« Reply #2 on: May 20, 2008, 06:39:50 PM »
Thank you so much Rene. Will try that. Appreciate.

Offline ivr_genesys

  • Newbie
  • *
  • Posts: 19
  • Karma: 0
Re: How to query ConnID from Genesys frame work
« Reply #3 on: May 21, 2008, 04:55:42 AM »
Hi Rene
Even though I have access to Tech support I have had hard time in finding info on that. Perhaps I am not giving the right key words(IVR functions, SDK documentation).

Would you please let me know the exact name that I should look for. Thank you so much.

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Re: How to query ConnID from Genesys frame work
« Reply #4 on: May 21, 2008, 06:27:36 PM »
Hi,

You can find all relevant documents here - Genesys TechSupport - menu Knowledge Base / Browse Document - tab "product documents by release:" - items "IVR Interface Option" and "IVR SDK".

Hope it helps you
R.

Offline victor

  • Administrator
  • Hero Member
  • *****
  • Posts: 1416
  • Karma: 18
Re: How to query ConnID from Genesys frame work
« Reply #5 on: June 02, 2008, 07:49:12 AM »
Hi,

what is wrong with using GetCallInfo command?

Vic

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Re: How to query ConnID from Genesys frame work
« Reply #6 on: June 02, 2008, 08:04:01 PM »
Hi Vic,

Nothing is wrong with GetCallInfo :). I just suggested to ivr_genesys usage of that function in case he needs to get information about a call...

R.