Re: Corbaname of an EJB3 session bean

2009-09-07 Thread Juergen Weber
(_NamingContextStub.java:251) at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:470) ... 4 more Any idea of what I'm missing? Thanks. -- Jean-Sebastien -- View this message in context: http://www.nabble.com/Corbaname-of-an-EJB3-session-bean-tp16334653s134p25328434

Corbaname of an EJB3 session bean

2008-03-27 Thread Jean-Sebastien Delfino
Given the following EJB3 session bean, deployed to Geronimo v2.1: @Stateless(name=MyCatalogEJB) public class MyCatalogEJBImpl implements CatalogEJB { ... } Having been able to lookup that EJB from a J2SE client as follows: Properties properties = new Properties();

Re: Corbaname of an EJB3 session bean

2008-03-27 Thread David Jencks
You have to set up a TSSGBean to configure the csiv2 security for your ejb and add a TSSLink gbean to associate the ejb with the security config. I think there's a fairly complete example in the testsuite. hope this helps david jencks On Mar 27, 2008, at 10:00 AM, Jean-Sebastien Delfino

Re: Corbaname of an EJB3 session bean

2008-03-27 Thread Jean-Sebastien Delfino
David Jencks wrote: You have to set up a TSSGBean to configure the csiv2 security for your ejb and add a TSSLink gbean to associate the ejb with the security config. I think there's a fairly complete example in the testsuite. hope this helps david jencks Thanks, I am now able to activate