I have the following setup:
JBoss 4.2.3
under this I:
-> Project A (Wich is not SEAM 2.1.2GA based)
EJBs:
* beanA (JNDI = beanA / remote)
* beanB (JNDI = beanB / remote)
-> Project B (SEAM based)
EJBs / Components:
* ComponentX
* ComponentY
On component X, I have the current code snippet:
@Scope(ScopeType.CONVERSATION)
@Name("ComponentX")
public class ComponentX implements java.io.Serializable {
...
@EJB
beanAInterface beanA;
....
public foo(){
beanA.bar();
}
Any ideas on how to solve this?
Thanks in advance.
}
source
share