I have an ejb project with several services deployed on the server.
MyServiceLocal extends javax.ejb.EJBLocalObject
MyServiceLocalHome extends javax.ejb.EJBLocalHome
MyServiceBean implements javax.ejb.SessionBean
My ejb-jar.xml looks like:
<enterprise-beans>
<session id="MyService">
<ejb-name>MyService</ejb-name>
<local-home>com.mypackage.service.MyServiceLocalHome</local-home>
<local>com.mypackage.service.MyServiceLocal</local>
<ejb-class>com.mypackage.service.MyServiceBean</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
</enterprise-beans>
My ibm-ejb-jar-bnd.xml looks like:
<ejbBindings xmi:id="EnterpriseBeanBinding_1054085279594" jndiName="ejb/com/mypackage/service/MyServiceHome">
<enterpriseBean xmi:type="ejb:Session" href="META-INF/ejb-jar.xml#MyService"/>
</ejbBindings>
I want to use a method testMethod() present in above EJB through a spring bean MyBean.
My context xml inside WEB-INF contains:
<context:component-scan base-package="com.mypackage.test"/>
<jee:local-slsb id="myServiceLocal" jndi-name="ejb/com/mypackage/service/MyServiceHome" business-interface="com.mypackage.service.MyServiceLocal">
</jee:local-slsb>
Where com.mypackage.test package contains MyBean class where the method is to be used and myServiceLocal is the property inside MyBean class which will be calling the method testMethod as:
myServiceLocal.testMethod()
from inside MyBean class.
However, while deploying the application on server (WAS 6.1), I am getting below error:
Error creating bean with name 'MyBean' defined in ServletContext resource [/WEB-INF/mySpringContext.xml]: Cannot resolve reference to bean 'myServiceLocal' while setting bean property 'myServiceLocal'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'myServiceLocal': Invocation of init method failed; nested exception is javax.naming.NameNotFoundException: Context: A3564XDZYCJLQZHNode04Cell/nodes/A3564XDZYCJLQZHNode04/servers/server1, name: ejb/com/mypackage/service/MyServiceHome: First component in name MyServiceHome not found. [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
What am I doing wrong? What is the solution to above error ?
Thanks for reading!