* @throws NumberFormatException
* @throws NoSuchAlgorithmException
*/
public static void main(String[] argv) throws RemoteException, NotBoundException, NumberFormatException, NoSuchAlgorithmException {
ChatServerModelInterface chatServerModel = new ChatServerModel(Integer.parseInt(argv[0]));
chatServerModel.bind();
System.out.println("Server start ...");
}
}