On Fri, 8 Dec 2000, Bernard Olivier wrote:
>  I'd like to know if I can use Corba objects or call them with Jboss.
>
> In fact I tried to find the stub and skeleton files of my ejbs after their
> deployement on Jboss, and I couldn't find them. So I was wondering about
> the impossibility to make my Ejbs used by Corba objects on another server.

        EJBs can call CORBA objects (for which you need to generate Java
stubs for the CORBA objects and run an ORB as an MBean or something, I
should think).  However, CORBA objects cannot call EJBs (since we do not
generate stubs usable by CORBA and we do not run an ORB, etc.).  You could
of course have a "middle layer" of CORBA services that have EJB client
code so that instead of CORBA service A calling EJB B, it calls CORBA
service C which just forwards the call to EJB B using a normal EJB/RMI
call and then wraps the result in CORBA for the return to A.  But you
won't get shared transactions between CORBA and EJBs and so on.

Aaron



--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to