" /> Add UUI to call transfer - Genesys CTI User Forum

Author Topic: Add UUI to call transfer  (Read 2708 times)

Offline masgar

  • Newbie
  • *
  • Posts: 16
  • Karma: 0
Add UUI to call transfer
« on: June 26, 2017, 01:28:05 PM »
Advertisement
Hi,

I need to make a blind transfer from an IRD strategy, but before transfer the call I need to add the Sip UUI header.

My test strategy is a simple multi function block with:

Update['UU_DATA','1234567890abcdef;encoding=hex;purpose=isdn-network;content=isnd-uui']
TRoute['3211','',RouteTypeUnknown,'']

The call transfer is OK but on destination PBX I don't see the UUI (checked with a wireshark trace).

Anyone can point me in the right direction?

Thanks,
Max
« Last Edit: June 26, 2017, 01:46:57 PM by masgar »

Offline jamesmurphyau

  • Full Member
  • ***
  • Posts: 123
  • Karma: 2
Re: Add UUI to call transfer
« Reply #1 on: June 26, 2017, 09:56:25 PM »
You can do it two ways:

1. Configure SIP server options that map 'UU_DATA' to the 'User-to-User' header
2. Use AttributeExtensions to attach the header and instruct SIP server to include it in the SIP message

Using method two, the example would be:

ExtensionUpdate['SIP_HEADERS', 'User-to-User']
ExtensionUpdate['User-to-User', '<user to user value>']

Offline masgar

  • Newbie
  • *
  • Posts: 16
  • Karma: 0
Re: Add UUI to call transfer
« Reply #2 on: June 27, 2017, 01:42:29 PM »
Thank you very much. It worked.

Max