Package com.chen.akka

Examples of com.chen.akka.HelloAkkaJava$Greeter


      deploySessionEjb(GreeterBean.class);
   }
  
   private void exercise(GreeterHome home) throws RemoteException, CreateException
   {
      Greeter bean = home.create();
      String name = new Date().toString();
      String actual = bean.sayHi(name);
      assertEquals("Hi " + name, actual);
   }
View Full Code Here


   public void testBeanCalls() throws Exception
   {
      String earNames[] = { "jbas6161-A", "jbas6161-B" };
      for(String earName : earNames)
      {
         Greeter bean = lookup(earName + "/SimpleSessionBean/remote", Greeter.class);
         String name = new Date().toString();
         String actual = bean.sayHiTo(name);
         assertEquals("Hi " + name, actual);
      }
   }
View Full Code Here

   public void testBeanCalls() throws Exception
   {
      String earNames[] = { "jbas6161-A", "jbas6161-B" };
      for(String earName : earNames)
      {
         Greeter bean = lookup(earName + "/SimpleSessionBean/remote", Greeter.class);
         String name = new Date().toString();
         String actual = bean.sayHiTo(name);
         assertEquals("Hi " + name, actual);
      }
   }
View Full Code Here

TOP

Related Classes of com.chen.akka.HelloAkkaJava$Greeter

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.