What kind of error are you seeing?
If this error does not match what you are seeing:
WSVR0040E: addEjbModule failed for MyApp-EJB.jar [class com.ibm.ws.runtime.component.DeployedModuleImpl] java.lang.NoClassDefFoundError: com/ibm/ejs/ras/Tr
Possible causes of this error include:
Check the server.policy file to see if the security permissions are given for the application.
Give permissions for the application in the server.policy file. For example:
//purchaseOrder permission grant codeBase "file:${was.install.root}/installedApps/myApp.ear/-"{ permission java.security.AllPermission; };where myApp.ear is the application name.
// WebSphere Application Server Security Policy for the application you are running grant codeBase "file:myApp.ear" { permission java.security.AllPermission; }; .