Re: Access a Geronimo EJB via Corba from C++ - how?

2007-12-10 Thread David Jencks
Without additional configuration your all-java example isn't using CORBA but rather the Openejb proprietary transport. Are you sure you've configured everything so both geronimo and your c+ + client are using the same name service? Have you configured csiv2 security on the ejb with a TSSGBea

Access a Geronimo EJB via Corba from C++ - how?

2007-12-10 Thread Juergen Weber
Hi, I can access an ejb in Geronimo from a Java client like this: ic = new InitialContext(); CustomerServiceHome sessionHome = (CustomerServiceHome) PortableRemoteObject .narrow(ic.lookup("CustomerServiceRemoteHome"), CustomerService