For help with installation, bugs reports or feature requests, please head over to our new forums.
Genuitec Community on GitHub
- This topic has 7 replies, 2 voices, and was last updated 19 years, 9 months ago by
Riyad Kalla.
-
AuthorPosts
-
uday231MemberHi Iam trying deploy an applcation having an EJB module and Web module using my eclipse 4.0 integrated on eclipse 3.1 into weblogic 8.1 sp4. while deploying iam getting error message that ejb module is not found at respective domain’s application’s folder related to weblogic(c:\bea\user_projects\domains\powerimage\). but it is actually available at the above said location.
The detailed Error message is as follows….
<An exception occurred while deploying an application _appsdir_Test_dir: weblogic.management.ManagementRuntimeException: java.io.FileNotFoundException: [J2EE:160034]Module PowerImageEJB not Found in path C:\bea\user_projects\domains\PowerImage\applications\Test..
weblogic.management.ManagementRuntimeException: java.io.FileNotFoundException: [J2EE:160034]Module PowerImageEJB not Found in path C:\bea\user_projects\domains\PowerImage\applications\Test.
at weblogic.management.runtime.DeployerRuntimeMBean_Stub.activate(DeployerRuntimeMBean_Stub.java:1123)
at weblogic.management.deploy.ApplicationsDirPoller.doActivate(ApplicationsDirPoller.java:217)
at weblogic.management.deploy.GenericAppPoller.doit(GenericAppPoller.java:290)
at weblogic.management.deploy.GenericAppPoller$PollerTrigger.trigger(GenericAppPoller.java:474)
at weblogic.time.common.internal.ScheduledTrigger.run(ScheduledTrigger.java:243)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.time.common.internal.ScheduledTrigger.executeLocally(ScheduledTrigger.java:229)
at weblogic.time.common.internal.ScheduledTrigger.execute(ScheduledTrigger.java:223)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
Caused by: java.io.FileNotFoundException: [J2EE:160034]Module PowerImageEJB not Found in path C:\bea\user_projects\domains\PowerImage\applications\Test.
at weblogic.j2ee.J2EEApplicationContainerFactory.createMBeansForEar(J2EEApplicationContainerFactory.java:590)
at weblogic.j2ee.J2EEApplicationContainerFactory.initializeDeployment(J2EEApplicationContainerFactory.java:493)
at weblogic.management.deploy.DeployerRuntime.unprotectedActivate(DeployerRuntime.java:854)
at weblogic.management.deploy.DeployerRuntime.access$000(DeployerRuntime.java:69)
at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1532)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1523)
at weblogic.management.deploy.DeployerRuntime.activate(DeployerRuntime.java:192)
at weblogic.management.deploy.DeployerRuntime.activate(DeployerRuntime.java:182)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:754)
at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:733)
at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1560)
at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:988)
at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:954)
at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:481)
at weblogic.management.runtime.DeployerRuntimeMBean_Stub.activate(DeployerRuntimeMBean_Stub.java:1114)
… 10 more
>please do help me in this regard…
thankyou.November 15, 2005 at 8:08 am #241508
Riyad KallaMemberAre you using a packaged deployment or exploded deployment?
November 15, 2005 at 10:48 pm #241575
uday231MemberIam trying exploded deployment…
November 16, 2005 at 8:19 am #241595
Riyad KallaMemberYou likely need to deploy first a packaged EAR version of your project, then login into your WebLogic admin console and “deploy” or “install” the application into your app server, this will generate all the stubs for your EJBs, etc. After that you can shut down your app server, remove the packaged deployment and recreate an exploded one, that will “overlay” your existing files and give you hot syncing.
November 16, 2005 at 11:35 pm #241688
uday231Memberwe tried that but still we didnt succeeded….
can u gimme another alternative solution …
verymuch thankfull for u suggestons …
do help me in this regard…
byeNovember 17, 2005 at 8:35 am #241701
Riyad KallaMemberWhen you selected to create the exploded deployment, did you select “Delete existing resources’ or did you select to “Overlay” them?
November 21, 2005 at 8:06 am #241830
uday231Memberi selected to delete existing resources……
November 21, 2005 at 10:41 am #241837
Riyad KallaMemberTry redeploying the packaged EAR, installing it into WebLogic, then shutting down weblogic then removing the deployment and recreating a new one and using the Overlay option.
-
AuthorPosts