client = new FqClient[hostName.length];
for(int i=0;i<hostName.length;i++) {
try {
FqNoit impl = new FqNoit(this);
client[i] = new FqClient(impl);
client[i].creds(hostName[i], portNumber, userName, password);
client[i].setHeartbeat(heartBeat);
client[i].connect();
} catch(Exception e) {
throw new RuntimeException(e);