properties.load(this.getClass().getResourceAsStream("/conf/authorizer.properties"));
channel.setPackager(packager);
channel.setTimeout(timeout);
server = new ISOServer(port, channel, null);
server.setConfiguration(new SimpleConfiguration());
server.addISORequestListener(this);
new Thread(server).start();
logger.info(channelName+"|Servidor levantado en puerto: "+ port);
} catch (FileNotFoundException e) {
logger.error(channelName+"|No se pudo levantar el puerto "+ port +": "+e.getMessage()+" |");