Genesys CTI User Forum

Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: masgar on June 26, 2017, 01:28:05 PM

Title: Add UUI to call transfer
Post by: masgar on June 26, 2017, 01:28:05 PM
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
Title: Re: Add UUI to call transfer
Post by: jamesmurphyau 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>']
Title: Re: Add UUI to call transfer
Post by: masgar on June 27, 2017, 01:42:29 PM
Thank you very much. It worked.

Max