0
am having a problem with an RMI call where I call a remote ejb from a jar. When debugging I get the following error:
"Failed to locate remote EJB [Cell/persistent/ejb/br/com/X/XX/XXX/model/payment/ejb/Xxxxsessionfacadehome]"
The class mapping is as follows by appcontext(I’m using spring), apparently the ejb home path is correct.
<jee:remote-slsb id="XXXXSessionFacade"
business-interface="br.com.X.XX.XXX.model.pagamento.ejb.XXXXSessionFacade"
home-interface="br.com.X.XX.XXX.model.pagamento.ejb.XXXXSessionFacadeHome"
cache-home="true"
lookup-home-on-startup="false"
jndi-name="cell/persistent/ejb/br/com/X/XX/XXX/model/pagamento/ejb/XXXXSessionFacadeHome"
resource-ref="false">
</jee:remote-slsb>
The jar is also in the build path and declared on the application server.