I'm trying to deploy an MDB with an alternative deployment descriptor located in my EAR in my Websphere 8.5 (Java EE specification). Example:
<module>
<ejb>arq_frameworkEJB.jar</ejb>
<alt-dd>dds/ejb-jar.xml</alt-dd>
</module>
The problem is the WAS EJB container is complaining about not finding the required binding file ibm-ejb-jar-bnd.xml (this binding is required to activate the MDB). The error says:
com.ibm.ejs.container.EJBConfigurationException: REQUIRED_BINDING_NOT_FOUND for MDB: arqMDB
I've tried multiple locations for this file (inside the arq_frameworkEJB.jar), inside the EARs META-INF folder, but it doesn't work. I've searched on internet, but haven't found any documentation neither mention about where this file is supposed to be.