1 2 3 4 5 6 7 8 |
Properties props = new Properties(); props.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.enterprise.naming.SerialInitContextFactory"); props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost"); // glassfish default port value will be 3700, - props.setProperty("org.omg.CORBA.ORBInitialPort", "3700"); InitialContext ctx = new InitialContext(props); CalcRemote bean = (CalcRemote) ctx.lookup("java:global/TestEAR/TEjb/Calc! com.CalcRemote"); |
Please check the port with linux Terminal
1 |
$ netstat -tunap |