08-30-2004 02:24 AM - edited 03-13-2019 06:09 AM
Hi,
I know one can connect to a CCM with JTAPI using the following LOC:
JtapiPeer myJtapiPeer = JtapiPeerFactory.getJtapiPeer(null);
Provider myProvider = myJtapiPeer .getProvider("hostname;login=user;passwd=password");
However, if the CCM with the name hostname fails, then the application will not work anymore despite other working CCM in the cluster.
In the Cisco JTAPI preferences dialog one can enter a list of CCM to try, but how can I use this list?
Solved! Go to Solution.
08-30-2004 12:26 PM
Hi,
Just put 2 hosts in the provider:
Provider myProvider = myJtapiPeer .getProvider("hostname1,hostname2;login=user;passwd=password");
In case of a failure, the application will connect to the hostname2 (takes a few seconds...)
08-30-2004 12:26 PM
Hi,
Just put 2 hosts in the provider:
Provider myProvider = myJtapiPeer .getProvider("hostname1,hostname2;login=user;passwd=password");
In case of a failure, the application will connect to the hostname2 (takes a few seconds...)
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide