public void connect(final int iTimeout) throws IOException {
// TRY TO CONNECT TO THE RIGHT PORT
for (int port : networkPort)
try {
channel = new OChannelBinaryClientSynch(networkAddress, port, contextConfig);
break;
} catch (Exception e) {
}
if (channel == null)