Package org.jboss.embedded.tutorial.javase.beans

Examples of org.jboss.embedded.tutorial.javase.beans.CustomerDAORemote


{
   public static void run() throws Exception
   {
      InitialContext ctx = new InitialContext();
      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("----------------------------------------------------------");
   }
View Full Code Here


{
   public static void run() throws Exception
   {
      InitialContext ctx = new InitialContext();
      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("----------------------------------------------------------");
   }
View Full Code Here

TOP

Related Classes of org.jboss.embedded.tutorial.javase.beans.CustomerDAORemote

Copyright © 2018 www.massapicom. 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.