this.config.getSyncInterval(),
this.config.getAsyncInterval())
);
this.nserver.bind("/", "start-time", new Long(System.currentTimeMillis()));
XcpConfig cfg = XcpServerFactory.createXcpConfig();
cfg.setPort(this.config.getPort());
cfg.setWorkersCount(this.config.getThreadCount());
cfg.addXcpHandler(XcpMessage.TAG_MESSAGE, XcpMessageHandler.class);
Console console = null;
try {
console = new Console(this, this.config);
} catch(javax.jms.JMSException ex) {