Message |
[+]
Avaya Orchestration Designer
» Moving to Maven, 23/06/2022 08:25:55
» Go to message
|
|
Can any one provide Avaya build.xml, while create POM.xml classes folder not getting included. need list of repo to be used to downloans the Avaya dependencies
|
 |
[+]
Avaya Orchestration Designer
» Transitional Audio announcement during menu input, 19/06/2022 04:09:44
» Go to message
|
|
Hi Team need to know is it feasible to announce transition audio while IVR await for user input. Given screenshot been tried and transitional audio not announced. could let me know options
|
 |
[+]
JTAPI
» AVAYA AES Events not received for some of VDN, 25/05/2022 05:48:30
» Go to message
|
|
I checked for Agent View App. My problem Is among the list of VDN, few not Monitored.
Could you provide detail on JTAPI Exerciser
|
 |
[+]
JTAPI
» AVAYA AES Events not received for some of VDN, 24/05/2022 10:05:28
» Go to message
|
|
Application added callObserver to list of VDN. connected event was not captured for list of VDN.Let me know the possible reason for this Issue
|
 |
[+]
JTAPI
» Ring No Answer using Call log App, 27/04/2022 10:23:14
» Go to message
|
|
Hi
I am using the calllog sample application to monitor the Outbound call. I need to capture the called number busy, ring no answer , abonded call. Could any one let one let me the events for Ring No Answer and Busy and Caller not reachable
public void handleOutgoingCall( CallControlConnectionEvent event )
{
Terminal callingTerminal;
Address callingAddress;
Address calledAddress;
UserToUserInfo avayaUUI = null;
String calledNumber = "<Unknown>";
Address address;
Call call;
String name = "";
try {
callingTerminal = event.getCallingTerminal();
// first verify that the callingTerminal is our terminal
if ( myTerminal.equals ( callingTerminal ) ) {
address = event.getConnection().getAddress();
callingAddress = event.getCallingAddress();
calledAddress = event.getCalledAddress();
if ( address != null && callingAddress != null ) {
// verify if this CallCtlCallEv belongs to the terminating end of the call
if ( !( address.equals ( callingAddress ) ) ) {
Date d = new Date();
// get called number information
if ( calledAddress != null ) {
calledNumber = calledAddress.getName();
}
// get called number information
if ( calledAddress instanceof LucentAddress ) {
try {
name = ( (LucentAddress) calledAddress).getDirectoryName();
}
catch ( Exception e ) {}
}
if ( name == null ) {
name = calledNumber;
}
// log call
trace.append( DateFormat.getDateTimeInstance().format(d) + " Call made to: " + name + " [" + calledNumber + "]");
call = event.getCall();
// verify if there is UUI along with this call
if ( call instanceof LucentCallInfo ) {
if ( event.getID() == CallControlConnectionEvent.CALLCTL_CONNECTION_NETWORK_REACHED ) {
trace.append(" UUI: <unknown>\n\n");
} else {
avayaUUI = ( (LucentCallInfo) call ).getUserToUserInfo();
if ( avayaUUI != null ) {
String uui = avayaUUI.getString();
trace.append(" UUI: " + uui + "\n\n");
} else {
trace.append(" UUI: <none>\n\n");
}
}
}
}
}
}
} catch (Exception e) {
trace.append( "handleOutgoingCall() caught " + e + "\n");
trace.append( "Message: " + e.getMessage() + "\n\n" );
return;
}
}
|
 |
[+]
JTAPI
» AVAYA CTI TSAPI App Error for OB Call, 18/04/2022 03:05:04
» Go to message
|
|
Could you provide the reason for stopmonitor error as app could not make Outbound call and giving the error
Exception caught in StopMoniter
[
{
"ClassName": "System.ArgumentException",
"Message": "MonitorId () is not a valid integer."
|
 |
[+]
JTAPI
» AgentView JTAPI App, 12/04/2022 10:18:49
» Go to message
|
|
Hi
Could anyone provide Agent View JTAPI App download link as I could not found in sample apps now
|
 |
[+]
JTAPI
» Get Call details of Genesys VDN, 10/03/2022 22:24:24
» Go to message
|
|
As its Avaya Integration I asked for, I could do
|
 |
[+]
JTAPI
» Get Call details of Genesys VDN, 10/03/2022 07:09:49
» Go to message
|
|
Could you give Genesys extension is connected to Communication Manager as a non-Avaya SIP station configuration of CM to check
|
 |
[+]
Avaya Orchestration Designer
» Airtel Push Client using their API, 10/03/2022 05:13:15
» Go to message
|
|
Hi Team,
Is it way how to retrieve API data from IVR while call landing to IVR as its provider API. Can this be from CM ?
|
 |
[+]
JTAPI
» Get Call details of Genesys VDN, 10/03/2022 05:10:21
» Go to message
|
|
Thank you, Will check this Option and let you know
|
 |
[+]
JTAPI
» Get Call details of Genesys VDN, 09/03/2022 22:23:50
» Go to message
|
|
Hi Team
Is it the way to Monitor Genesys extension using TSAPI and log the call data(UCID, CLI and DNIS) ?
|
 |
[+]
JTAPI
» AVAYA AES - User Data Not getting Captured, 21/01/2022 18:02:49
» Go to message
|
|
Is any changes required to utilize the given method ?
|
 |
[+]
JTAPI
» AVAYA AES - User Data Not getting Captured, 21/01/2022 09:42:37
» Go to message
|
|
Hi Team
API used to get the digits is LucentV5CallInfo using ecsjtapia.jar.
Now I am not getting the user enter digits using the API callInfo.getUserEnteredCode().getDigits() . Is any changes in ecsjtapia.jar to connect AES 6.3 ?
|
 |
[+]
Avaya Orchestration Designer
» AVAYA AES - User Data Not getting Captured, 21/01/2022 04:22:43
» Go to message
|
|
Hi Team
API used to get the digits is LucentV5CallInfo using ecsjtapia.jar.
Now I am not getting the user enter digits using the API callInfo.getUserEnteredCode().getDigits() . Is any changes in ecsjtapia.jar to connect AES 6.3 ?
|
 |