When I calling:
final JtapiPeer jtapiPeer = JtapiPeerFactory.getJtapiPeer(null);
final CiscoProvider ciscoProvider = jtapiPeer.getProvider(String.format(CUCM_LOGIN_STRING,
telephonyPropertyCucm.getHost(),
telephonyPropertyCucm.getLogin(),
telephonyPropertyCucm.getPassword()));
final Call call = ciscoProvider.createCall();
final Address addressFrom = ciscoProvider.getAddress(from);
addressFrom.addCallObserver((callEvs) -> {});
call.connect(addressFrom.getTerminals()[0], addressFrom, to);
Then I've got sometimes a PlatformExceptionImpl:
...
Caused by: com.cisco.jtapi.PlatformExceptionImpl: Could not meet post conditions of connect()
at com.cisco.jtapi.CallImpl.connect(CTQF) ~[cisco-jtapi-0.0.1-SNAPSHOT.jar!/:11.5(1.13045)-1 Release]
at com.cisco.jtapi.CallImpl.connect(CTQF) ~[cisco-jtapi-0.0.1-SNAPSHOT.jar!/:11.5(1.13045)-1 Release]
at ru.bcs.telephony.jtapi.starter.helper.call.CallingExecutable.execute(CallingExecutable.java:33) ~[telephony-jtapi-spring-boot-starter-1.1-RELEASE.jar!/:na]
... 124 common frames omitted
I've already tried to increase JtapiPostConditionTimeout
in jtapi.ini to 20 seconds (as I can see in the documentation it is the max value).
I expect that this exception doesn't appear.
But only sometimes this exception appears.
P.S. Fields of the exception are follows:
PLATFORM EXCEPTION. It's a message: Could not meet post conditions of connect(). It's error code: 100. It's error name: . It's error description:
Objects like Provider, Address, Terminal have an in-service/out-of-service state - opening one (e.g. by adding an observer) kicks off the process of connecting to CUCM CTI Manager and establishing observation/control of the object, but that takes some time.
In general, you will want to wait for in-service events for those objects to arrive before attempting any operations on them:
where Hander.java is something like:
See here for a complete sample: https://github.com/CiscoDevNet/jtapi-samples