Package org.jboss.injbossaop.ejb

Examples of org.jboss.injbossaop.ejb.ExampleSessionHome


         String s = request.getParameter("field1");
         System.out.println("**** EarExampleServlet.service()");
        
         InitialContext ctx = new InitialContext();
         Object obj = ctx.lookup("ExampleSession");
         ExampleSessionHome home = (ExampleSessionHome)PortableRemoteObject.narrow(obj, ExampleSessionHome.class);
         ExampleSession exSess = home.create();
         ExampleValue value = exSess.getValue(s);
        
         request.getSession().setAttribute("exampleValue", new ExampleValue(s));
         request.getRequestDispatcher("/index.jsp").forward(request, response);
      }
View Full Code Here


         String s = request.getParameter("field1");
         System.out.println("**** EarExampleServlet.service()");
        
         InitialContext ctx = new InitialContext();
         Object obj = ctx.lookup("ExampleSession");
         ExampleSessionHome home = (ExampleSessionHome)PortableRemoteObject.narrow(obj, ExampleSessionHome.class);
         ExampleSession exSess = home.create();
         ExampleValue value = exSess.getValue(s);
        
         request.getSession().setAttribute("exampleValue", new ExampleValue(s));
         request.getRequestDispatcher("/index.jsp").forward(request, response);
      }
View Full Code Here

TOP

Related Classes of org.jboss.injbossaop.ejb.ExampleSessionHome

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.