I want to lookup EJB deplpoyed on Wildfly server using IIOP/CORBA.
On Payara Server I am able to do this using below configuration:
Payara JNDI lookup
Properties jndiProperties = new Properties();
jndiProperties.setProperty("org.omg.CORBA.ORBInitialHost", "localhost");
jndiProperties.setProperty("org.omg.CORBA.ORBInitialPort", "3700");
javax.naming.Context c = new InitialContext(jndiProperties);
what properties needs to be set for Wildfly? I looked into many samples but they are using http-remoting.