Author Message
UmeshC
Joined: Apr 18, 2011
Messages: 89
Offline
Hi,

One of our customer wants to get ASAIUUI value of a call with call event. Is it possible to get ASAIUUI value using JTAPI? If yes, how ? Is it same as UCID?

Thanks & Regards,
Umesh
MartinFlynn
Joined: Nov 30, 2009
Messages: 1922
Offline
UCID is a Universal Call ID and allows a call to be identified over several switches.

UUI is User to User Information (aka UserInfo or UserData). It allows a a user or application to add some information into the call. This information is not used by the switches but they do pass it on, in the expectation that the receiving end will know what to do with it.

If UUI has been added to the call, you can see it using LucentCallInfo.getUserToUserInfo().

So, say you have a Call object (eg. from an event), you can do something like:

if (call instanceof LucentCallInfo) {

LucentCallInfo lucentCall = (LucentCallInfo) call;
String UUIString = lucentCall.getUserToUserInfo().getString()'
}


Martin
UmeshC
Joined: Apr 18, 2011
Messages: 89
Offline
Thanks Martin.
Go to:   
Mobile view