import javax.naming.InitialContext; import test.CallHelloWorldRemote; import java.util.Properties; public class CallEJB { public static void main (String[] args) throws Exception { // Properties props = new Properties(); // props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost"); // props.setProperty("org.omg.CORBA.ORBInitialPort", "3702"); InitialContext ctx = new InitialContext(); CallHelloWorldRemote testerBean = (CallHelloWorldRemote)ctx.lookup("test.CallHelloWorldRemote"); testerBean.callHello(); } }