<%@ page import="javax.ejb.*; javax.naming.*; java.rmi.*; java.util.Properties; demo.log4j.ejb.*;" %> <% Properties p = new Properties(); p.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.T3InitialContextFactory"); p.put(Context.PROVIDER_URL, "t3://localhost:7001"); Context ctxt = new InitialContext(p); Log4JDemoHome dHome = (Log4JDemoHome) ctxt.lookup("Log4JDemoHome"); Log4JDemo demo = dHome.create(); out.println(demo.sayHello()); %>