Sunday, May 26, 2013

Call EJB 3.0 session bean from JSP

  • <%@page import="com.simple.ejb.SimpleCalcRemote"%><html>   
  •     <%  
  •     javax.naming.InitialContext ic = new javax.naming.InitialContext();  
  •     SimpleCalcRemote sb = (SimpleCalcRemote)ic.lookup("simplecalc");  
  •     String result = sb.sayHello("myname");  
  •     out.println(result);  
  •     %> 
  • No comments:

    Post a Comment