cancel
Showing results for 
Search instead for 
Did you mean: 
cancel

Who Me Too'd this topic

Jtapi get answered call with Cucm 11.5

bruna2000
Level 1
Level 1

Hello, with Cucm 8.6 I can find an answered call in callChangedEvent:

CiscoCall mycall = (CiscoCall) eventList[i].getCall();   //get the call

//check if both the connections of the call are "CONNECTED"

if ((mycall .getConnections()[1].getState() == Connection.CONNECTED) && (mycall.getConnections()[0].getState() == connection.CONNECTED)) {

//CALL ANSWERED!

}

With Cucm 11.6, in callChangedEvent, the call has only one connection.

Also, when the called phone answer, no callChangedEvent was thrown.


There are some difference in callChangedEvent between Cucm 8.6 and Cucm 11.5?

How can I check if and when a call is answered in my CallControlCallObserver?

Thanks

Lester

Who Me Too'd this topic