cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
355
Views
0
Helpful
1
Replies

JTAPI: CCM cluster support

akoerni
Level 1
Level 1

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?

1 Accepted Solution

Accepted Solutions

Sascha Monteiro
Level 6
Level 6

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...)

View solution in original post

1 Reply 1

Sascha Monteiro
Level 6
Level 6

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...)