- This topic has 2 replies, 3 voices, and was last updated 12 years ago by support-piotr.
-
AuthorPosts
-
viswamy2kParticipantHI,
We are using MyEclipseBlue10.6 and WebSphere8.5 with WAS provided java7.
We have an EJB application which is of EJB3.1 nature and it is deployed to an EAR application which is of JEE6 nature.
While deploying the ejb module to the EAR we are experiencing the below(highlighted in RED) exception.WASX7017E: Exception received while running file “F:\MyEclipseBlue\Common\plugins\com.genuitec.eclipse.blue.websphere85_9.0.0.me201205210617\installEAR_EJB3.jacl”; exception information: com.ibm.websphere.management.application.client.AppDeploymentException: com.ibm.websphere.management.application.client.AppDeploymentException: org.eclipse.jst.j2ee.commonarchivecore.internal.exception.ResourceLoadException: IWAE0007E Could not load resource “META-INF/ibm-ejb-jar-bnd.xml” in archive “myejb31.jar” [Root exception is org.eclipse.jst.j2ee.commonarchivecore.internal.exception.ResourceLoadException: IWAE0007E Could not load resource “META-INF/ibm-ejb-jar-bnd.xml” in archive “myejb31.jar”]
org.eclipse.jst.j2ee.commonarchivecore.internal.exception.ResourceLoadException: org.eclipse.jst.j2ee.commonarchivecore.internal.exception.ResourceLoadException: IWAE0007E Could not load resource “META-INF/ibm-ejb-jar-bnd.xml” in archive “myejb31.jar”We are attaching sample here
Can you please let us know the root cause and resolution for the same?thanks in advance
Attachments:
You must be logged in to view attached files.
support-pradeepMemberviswamy2k,
Sorry that you are seeing issues. I have escalated it to a dev team member. They will get back to you.
support-piotrParticipantviswamy2k,
the ibm-ejb-jar-bnd.xml file in src/META-INF folder of EJB project is malformed. Note space before “http://www.w3.org/2001/XMLSchema-instance”:
<?xml version="1.0" encoding="UTF-8"?> <ejb-jar-bnd xmlns="http://websphere.ibm.com/xml/ns/javaee" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
Please also update the binding file to match your project’s configuration. Let us know if you have any other problems!
-
AuthorPosts