Package br.com.procempa.modus.session

Examples of br.com.procempa.modus.session.SimpleEJB


public class SimpleEJBTest extends TestCase {
 
  public void testPrintHello() throws NamingException {
    InitialContext ctx = new InitialContext();
    SimpleEJB bean  = (SimpleEJB) ctx.lookup("modus/SimpleEJBImp/remote");
    System.out.println(bean.getHello());
  }
View Full Code Here


    System.out.println(bean.getHello());
  }
 
  public void testHelloException() throws NamingException, HelloException {
    InitialContext ctx = new InitialContext();
    SimpleEJB bean  = (SimpleEJB) ctx.lookup("modus/SimpleEJBImp/remote");
    bean.getHelloException();
 
View Full Code Here

TOP

Related Classes of br.com.procempa.modus.session.SimpleEJB

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.