Package org.jboss.narayana.blacktie.jatmibroker

Source Code of org.jboss.narayana.blacktie.jatmibroker.BlackTieServerLauncher

package org.jboss.narayana.blacktie.jatmibroker;

import org.jboss.narayana.blacktie.jatmibroker.core.conf.ConfigurationException;
import org.jboss.narayana.blacktie.jatmibroker.xatmi.ConnectionException;
import org.jboss.narayana.blacktie.jatmibroker.xatmi.server.BlackTieServer;

public class BlackTieServerLauncher {

  /**
   * @param args
   * @throws ConnectionException
   * @throws ConfigurationException
   * @throws InterruptedException
   */
  public static void main(String[] args) throws ConfigurationException,
      ConnectionException, InterruptedException {
    BlackTieServer server = new BlackTieServer("javaser");
    server.tpadvertise("JAVASERV", BarService.class.getName());
    server.block();
  }

}
TOP

Related Classes of org.jboss.narayana.blacktie.jatmibroker.BlackTieServerLauncher

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.