我想使用IIOP / CORBA查找在Wildfly服务器上删除的EJB。
在Payara Server上,我可以使用以下配置执行此操作:
Payara JNDI查找
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);
需要为Wildfly设置哪些属性?我查看了很多样本,但他们正在使用 http-remoting 。