[JBoss-dev] [Design of the JBoss EJB Container] - Re: CORBA callback and EJB

2005-02-18 Thread sunilarora123
can you tell me how you register the bean in JBOSS ORB. Can you tell me the the implementation of registerEJBObjectinCORBAServer method. registerEJBObjectinCORBAServer(context.getEJBObject()); View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3867060#3867060

[JBoss-dev] [Design of the JBoss EJB Container] - Re: CORBA callback and EJB

2005-02-18 Thread fruehbeck
Write a ServiceLocator doing something like: public synchronized static ORB getORB() { // Create and initialize the ORB try { if (centralOrb == null) { log.info(Initializing ORB.); centralOrb = (org.omg.CORBA.ORB)new

[JBoss-dev] [Design of the JBoss EJB Container] - Re: CORBA callback and EJB

2005-01-21 Thread fruehbeck
I don't know if you are still working on that topic, but anyhow.. It is NOT true, that interworking is not possible implementing a externally defined CORBA interface. I am interworking with a CORBA system using plain EJBs. You just need a small CORBA wrapper called (typically) TIE