Is it possible to call in some way an EJB deployed on JBoss from a Business Service deployed on BEA AquaLogic Service Bus? Just to precise, I'm not going to call it through Web Service, but through normal EJB call. I would appreciate if anyone has a succesful experience in this matter.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Its irrelevant whether the client of an EJB is itself an application server or not. As long as a shared (or available) JNDI service (that the EJB is bound to) is accessible to your service bus, it an act as a client of the EJB published by the (JBoss) application server. |
|||
|
|
|
You can publish your JBoss EJB with RMI and call it from AquaLogic, provided your EJB implements some interface that is available from AquaLogic. |
|||
|
|