FileDocCategorySizeDatePackage
Main.javaAPI DocJBoss 4.2.12796Fri Jul 13 20:55:32 BST 2007org.jboss.tutorial.mcdeploy

Main

public class Main extends Object
Comment
author
Bill Burke
version
$Revision: 60233 $

Fields Summary
Constructors Summary
Methods Summary
public static javax.naming.InitialContextgetInitialContext()

      Hashtable props = getInitialContextProperties();
      return new InitialContext(props);
   
private static java.util.HashtablegetInitialContextProperties()

      Hashtable props = new Hashtable();
      props.put("java.naming.factory.initial", "org.jnp.interfaces.LocalOnlyContextFactory");
      props.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
      return props;
   
public static voidmain(java.lang.String[] args)

      EJB3StandaloneBootstrap.boot(null);
      EJB3StandaloneBootstrap.deployXmlResource("ejb3-deployment.xml");

      InitialContext ctx = getInitialContext();
      CustomerDAOLocal local = (CustomerDAOLocal)ctx.lookup("CustomerDAOBean/local");
      CustomerDAORemote remote = (CustomerDAORemote)ctx.lookup("CustomerDAOBean/remote");

      System.out.println("----------------------------------------------------------");

      int id = local.createCustomer("Gavin");
      Customer cust = local.findCustomer(id);
      System.out.println("Successfully created and found Gavin from @Local interface");

      id = remote.createCustomer("Emmanuel");
      cust = remote.findCustomer(id);
      System.out.println("Successfully created and found Emmanuel from @Remote interface");
      System.out.println("----------------------------------------------------------");
      EJB3StandaloneBootstrap.shutdown();