logger.debug("Binding new socket to {}", bindAddress); //$NON-NLS-1$
newSocket.bind(bindAddress);
logger.debug("Connecting to {}", remoteAddress.toString()); //$NON-NLS-1$
newSocket.connect(remoteAddress, TIMEOUT_IN_SECONDS);
logger.debug("Wrtiting indication"); //$NON-NLS-1$
indication.writeTo(newSocket.getOutputStream());
newSocket.close();
} catch (IOException e) {
logger.error("Connection to client not successfully established: {}", e.getMessage()); //$NON-NLS-1$
}
}