" /> How to use T-Server call events to influence IRD 7.5 strategy app. ? - Genesys CTI User Forum

Author Topic: How to use T-Server call events to influence IRD 7.5 strategy app. ?  (Read 3462 times)

Offline Gef Buneri

  • Sr. Member
  • ****
  • Posts: 373
  • Karma: 0
  • Madness is just a point of view.
Advertisement
Hi all,
I need to manage call interation in an IRD 7.5 strategy application using T-Server Events like EventDestinationBusy as conditions to route an interaction using the function TRoute[DESTINATION,'',RouteTypeDefault,''], where DESTINATION is a geo or mobile number outside my telecomm. system, I.E. if DESTINATION = 'EventDestinationBusy' then "do this".
URS 7.5, T-Server 7.5

Regards,

Gef.
« Last Edit: September 13, 2012, 12:12:30 PM by Gef Buneri »

Offline Kubig

  • Hero Member
  • *****
  • Posts: 2755
  • Karma: 44
Re: How to use T-Server call events to influence IRD 7.5 strategy app. ?
« Reply #1 on: September 13, 2012, 01:50:29 PM »
I guess,that the TRoute function is very simple and not check network availability,Destination Status and more...
Only following result are possible:

• 0001 Unknown error
• 0008 Routing done
• 0013 Remote error

So,you can manage call if you receive Error code "0001" or "0013" and make something with it.
« Last Edit: September 13, 2012, 02:06:40 PM by Kubig »

Offline Gef Buneri

  • Sr. Member
  • ****
  • Posts: 373
  • Karma: 0
  • Madness is just a point of view.
Re: How to use T-Server call events to influence IRD 7.5 strategy app. ?
« Reply #2 on: September 13, 2012, 02:15:59 PM »
Hi Kubig an thanx. No error in routing, everytime "routing done" on URS logs; so can you give me any tip on how to reach the goal to route an interaction to a geo/mobile numer, checking the destination answer ?
« Last Edit: September 14, 2012, 06:58:07 AM by Gef Buneri »

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: How to use T-Server call events to influence IRD 7.5 strategy app. ?
« Reply #3 on: September 13, 2012, 04:30:12 PM »
You can't as basically with TRoute you are forcing a call to be placed and left URS and gave control to the PBX. Genesys can only report what it monitors, as TRoute sends the call to anything then you lose this control.

Offline Gef Buneri

  • Sr. Member
  • ****
  • Posts: 373
  • Karma: 0
  • Madness is just a point of view.
Re: How to use T-Server call events to influence IRD 7.5 strategy app. ?
« Reply #4 on: September 14, 2012, 06:58:41 AM »
I see. Thanx all !