]
Marius Bogoevici commented on JBAS-8377:
----------------------------------------
No, it's still broken. The problem is that the timer kicks in before everything is
fully initialized (i.e. there's no hard dependency between the BeanManager being
registered in JNDI and the EJBs being started, and in the current setup this is pretty
hard to do). The role of Switchboard will be to address this kind of situation
systematically.
This may succeed when this is a new deployment, and the timer for CodeFragmentPrinter is
not started yet. However, on the following restarts, the deployment will throw an
exception.
JBossAS cannot load an app with datasource when the app is deployed
before AS starts
------------------------------------------------------------------------------------
Key: JBAS-8377
URL:
https://jira.jboss.org/browse/JBAS-8377
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Weld/CDI
Environment: JBossAS SNAPSHOT
(
http://hudson.qa.jboss.com/hudson/view/JBoss%20AS/job/JBoss-AS-6.0.x/1882...)
Reporter: Martin Gencur
Assignee: Marius Bogoevici
Priority: Critical
Fix For: 6.0.0.CR1
Deploying the app with datasource into the running JBossAS instance works (besides
throwing an exception when deploying them at once).
I get the following exception when starting JBossAS after the app and datasource are
deployed. And of course, the app doesn't work. I think this is a big problem because
one would need to manually redeploy all the applications in AS for example after AS
restart. I used Weld Pastecode example from Weld (
http://github.com/weld/core/tree/master/examples/jsf/pastecode/ ). Btw, all of this works
just fine with JBoss AS M4.
Stacktrace:
Caused by: java.lang.RuntimeException: Unable to inject jndi dependency:
env/org.jboss.weld.integration.ejb.SessionBeanInterceptor/beanManager into property
org.jboss.weld.integration.ejb.SessionBeanInterceptor.beanManager: weld-pastecode not
bound
at org.jboss.injection.JndiPropertyInjector.lookup(JndiPropertyInjector.java:82)
[:1.5.0]
at org.jboss.injection.JndiPropertyInjector.inject(JndiPropertyInjector.java:99)
[:1.5.0]
at org.jboss.injection.JndiPropertyInjector.inject(JndiPropertyInjector.java:89)
[:1.5.0]
at org.jboss.ejb3.interceptor.InterceptorInjector.inject(InterceptorInjector.java:49)
[:1.5.0]
at org.jboss.ejb3.EJBContainer.createInterceptor(EJBContainer.java:408) [:1.5.0]
at org.jboss.ejb3.BaseContext.initialiseInterceptorInstances(BaseContext.java:112)
[:1.5.0]
at org.jboss.ejb3.injection.InjectionHelper.inject(InjectionHelper.java:55) [:1.5.0]
at org.jboss.ejb3.injection.InjectionHelper.inject(InjectionHelper.java:43) [:1.5.0]
at
org.jboss.ejb3.session.SessionInjectionInvocation.proceed(SessionInjectionInvocation.java:45)
[:1.5.0]
at
org.jboss.ejb3.injection.InjectionInvocation.invokeTarget(InjectionInvocation.java:97)
[:1.5.0]
at org.jboss.ejb3.injection.InjectionInvocation.invokeNext(InjectionInvocation.java:91)
[:1.5.0]
at
org.jboss.ejb3.core.context.CurrentInvocationContextInterceptor.invoke(CurrentInvocationContextInterceptor.java:47)
[:1.5.0]
at org.jboss.ejb3.injection.InjectionInvocation.invokeNext(InjectionInvocation.java:82)
[:1.5.0]
at
org.jboss.aspects.currentinvocation.CurrentInvocationInterceptor.invoke(CurrentInvocationInterceptor.java:67)
[:1.0.1]
at org.jboss.ejb3.injection.InjectionInvocation.invokeNext(InjectionInvocation.java:82)
[:1.5.0]
at org.jboss.ejb3.EJBContainer.injectBeanContext(EJBContainer.java:1278) [:1.5.0]
at
org.jboss.ejb3.singleton.aop.impl.AOPBasedSingletonContainer.postConstruct(AOPBasedSingletonContainer.java:735)
[:1.0.0-alpha-11]
at
org.jboss.ejb3.singleton.impl.container.SingletonEJBInstanceManagerImpl.create(SingletonEJBInstanceManagerImpl.java:132)
[:1.0.0-alpha-11]
... 58 more
Caused by: javax.naming.NamingException: Could not dereference object [Root exception is
javax.naming.NamingException: Could not dereference object [Root exception is
javax.naming.NameNotFoundException: weld-pastecode not bound]]
at org.jnp.interfaces.NamingContext.resolveLink(NamingContext.java:1356) [:5.0.5.Final]
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:819) [:5.0.5.Final]
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:688) [:5.0.5.Final]
at sun.reflect.GeneratedMethodAccessor277.invoke(Unknown Source) [:1.6.0_21]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[:1.6.0_21]
at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_21]
at
org.jboss.ejb3.singleton.aop.impl.AOPBasedSingletonContainer$1.invoke(AOPBasedSingletonContainer.java:304)
[:1.0.0-alpha-11]
at $Proxy188.lookup(Unknown Source) at org.jboss.ejb3.JndiUtil.lookup(JndiUtil.java:44)
[:1.5.0]
at org.jboss.injection.JndiPropertyInjector.lookup(JndiPropertyInjector.java:75)
[:1.5.0]
... 75 more
Caused by: javax.naming.NamingException: Could not dereference object [Root exception is
javax.naming.NameNotFoundException: weld-pastecode not bound]
at org.jnp.interfaces.NamingContext.resolveLink(NamingContext.java:1356) [:5.0.5.Final]
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:819) [:5.0.5.Final]
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:835) [:5.0.5.Final]
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:688) [:5.0.5.Final]
at javax.naming.InitialContext.lookup(InitialContext.java:392) [:1.6.0_21]
at org.jnp.interfaces.NamingContext.resolveLink(NamingContext.java:1350) [:5.0.5.Final]
... 84 more
Caused by: javax.naming.NameNotFoundException: weld-pastecode not bound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:771) [:5.0.5.Final]
at org.jnp.server.NamingServer.getBinding(NamingServer.java:779) [:5.0.5.Final]
at org.jnp.server.NamingServer.getObject(NamingServer.java:785) [:5.0.5.Final]
at org.jnp.server.NamingServer.lookup(NamingServer.java:396) [:5.0.5.Final]
at org.jnp.server.NamingServer.lookup(NamingServer.java:399) [:5.0.5.Final]
at org.jnp.server.NamingServer.lookup(NamingServer.java:399) [:5.0.5.Final]
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:728) [:5.0.5.Final]
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:688) [:5.0.5.Final]
at javax.naming.InitialContext.lookup(InitialContext.java:392) [:1.6.0_21]
at org.jnp.interfaces.NamingContext.resolveLink(NamingContext.java:1350) [:5.0.5.Final]
... 89 more
09:30:13,689 WARN [org.jboss.kernel.plugins.dependency.CreateDestroyLifecycleAction]
Error during destroy for jboss.j2ee:jar=weld-pastecode.war,name=TimerStartup,service=EJB3:
java.lang.RuntimeException: Could not preDestroy the singleton bean instance
at
org.jboss.ejb3.singleton.impl.container.SingletonEJBInstanceManagerImpl.destroy(SingletonEJBInstanceManagerImpl.java:177)
[:1.0.0-alpha-11]
at
org.jboss.ejb3.singleton.impl.container.SingletonContainer.destroy(SingletonContainer.java:164)
[:1.0.0-alpha-11]
at
org.jboss.ejb3.singleton.aop.impl.AOPBasedSingletonContainer.destroy(AOPBasedSingletonContainer.java:338)
[:1.0.0-alpha-11]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_21]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
[:1.6.0_21]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[:1.6.0_21]
at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_21]
at
org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:60)
[jboss-reflect.jar:2.2.0.Alpha9]
at
org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:168)
[jboss-reflect.jar:2.2.0.Alpha9]
at
org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)
[jboss-reflect.jar:2.2.0.Alpha9]
at
org.jboss.kernel.plugins.dependency.KernelControllerContextAction$JoinpointDispatchWrapper.execute(KernelControllerContextAction.java:257)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.kernel.plugins.dependency.ExecutionWrapper.execute(ExecutionWrapper.java:47)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchExecutionWrapper(KernelControllerContextAction.java:125)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:72)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.kernel.plugins.dependency.LifecycleAction.uninstallActionInternal(LifecycleAction.java:286)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.kernel.plugins.dependency.InstallsAwareAction.uninstallAction(InstallsAwareAction.java:175)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.kernel.plugins.dependency.InstallsAwareAction.uninstallAction(InstallsAwareAction.java:42)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleUninstallAction(SimpleControllerContextAction.java:79)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.action.AccessControllerContextAction.uninstall(AccessControllerContextAction.java:131)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractControllerContextActions.uninstall(AbstractControllerContextActions.java:58)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractControllerContext.uninstall(AbstractControllerContext.java:385)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.uninstall(AbstractController.java:2078)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:1624)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:1472)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1104)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139)
[jboss-dependency.jar:2.2.0.Alpha10]
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939)
[jboss-dependency.jar:2.2.0.Alpha10]
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654)
[jboss-dependency.jar:2.2.0.Alpha10]
at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983)
[:2.2.0.Alpha6]
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076)
[:2.2.0.Alpha6]
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679)
[:2.2.0.Alpha6]
at
org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106)
[:6.0.0-SNAPSHOT]
at
org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:130)
[:0.1.0.Alpha1]
at
org.jboss.profileservice.dependency.ProfileDeployAction.deploy(ProfileDeployAction.java:148)
[:0.1.0.Alpha1]
at
org.jboss.profileservice.dependency.ProfileDeployAction.installActionInternal(ProfileDeployAction.java:94)
[:0.1.0.Alpha1]
at
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)
[jboss-kernel.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379)
[jboss-dependency.jar:2.2.0.Alpha10]
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139)
[jboss-dependency.jar:2.2.0.Alpha10]
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939)
[jboss-dependency.jar:2.2.0.Alpha10]
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654)
[jboss-dependency.jar:2.2.0.Alpha10]
at
org.jboss.profileservice.dependency.ProfileServiceController.activate(ProfileServiceController.java:188)
[:0.1.0.Alpha1]
at
org.jboss.profileservice.AbstractProfileService.activateProfile(AbstractProfileService.java:170)
[:0.1.0.Alpha1]
at
org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.activate(AbstractProfileServiceBootstrap.java:117)
[:0.1.0.Alpha1]
at
org.jboss.profileservice.resolver.BasicResolverFactory$ProfileResolverFacade.deploy(BasicResolverFactory.java:89)
[:0.1.0.Alpha1]
at
org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.start(AbstractProfileServiceBootstrap.java:97)
[:0.1.0.Alpha1]
at
org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:130)
[:6.0.0-SNAPSHOT]
at
org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56)
[:6.0.0-SNAPSHOT]
at
org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827)
[jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]
at
org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417)
[jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]
at java.lang.Thread.run(Thread.java:619) [:1.6.0_21]
Caused by: java.lang.RuntimeException: java.lang.IllegalArgumentException: No interceptor
found for class org.jboss.weld.integration.ejb.SessionBeanInterceptor in
org.jboss.ejb3.singleton.aop.impl.context.LegacySingletonBeanContext@4eccf230
at
org.jboss.ejb3.interceptors.container.AbstractContainer.invokeCallback(AbstractContainer.java:262)
[:1.0.7]
at org.jboss.ejb3.EJBContainer.invokeCallback(EJBContainer.java:1300) [:1.5.0]
at org.jboss.ejb3.EJBContainer.invokePreDestroy(EJBContainer.java:1328) [:1.5.0]
at
org.jboss.ejb3.singleton.aop.impl.AOPBasedSingletonContainer.preDestroy(AOPBasedSingletonContainer.java:762)
[:1.0.0-alpha-11]
at
org.jboss.ejb3.singleton.impl.container.SingletonEJBInstanceManagerImpl.destroy(SingletonEJBInstanceManagerImpl.java:173)
[:1.0.0-alpha-11]
... 59 more
Caused by: java.lang.IllegalArgumentException: No interceptor found for class
org.jboss.weld.integration.ejb.SessionBeanInterceptor in
org.jboss.ejb3.singleton.aop.impl.context.LegacySingletonBeanContext@4eccf230
at org.jboss.ejb3.BaseContext.getInterceptor(BaseContext.java:146) [:1.5.0]
at
org.jboss.ejb3.interceptors.aop.LifecycleCallbackInterceptorMethodLazyInterceptor.getInterceptorInstance(LifecycleCallbackInterceptorMethodLazyInterceptor.java:138)
[:1.0.7]
at
org.jboss.ejb3.interceptors.aop.LifecycleCallbackInterceptorMethodLazyInterceptor.invoke(LifecycleCallbackInterceptorMethodLazyInterceptor.java:108)
[:1.0.7]
at
org.jboss.aop.joinpoint.ConstructionInvocation.invokeNext(ConstructionInvocation.java:80)
[jboss-aop.jar:2.2.1.Alpha3]
at
org.jboss.ejb3.core.context.CurrentInvocationContextInterceptor.invoke(CurrentInvocationContextInterceptor.java:47)
[:1.5.0]
at
org.jboss.aop.joinpoint.ConstructionInvocation.invokeNext(ConstructionInvocation.java:80)
[jboss-aop.jar:2.2.1.Alpha3]
at
org.jboss.ejb3.interceptors.aop.InvocationContextInterceptor.setup(InvocationContextInterceptor.java:88)
[:1.0.7]
at
org.jboss.aop.advice.org.jboss.ejb3.interceptors.aop.InvocationContextInterceptor_z_setup_1685442932.invoke(InvocationContextInterceptor_z_setup_1685442932.java)
[:]
at
org.jboss.aop.joinpoint.ConstructionInvocation.invokeNext(ConstructionInvocation.java:80)
[jboss-aop.jar:2.2.1.Alpha3]
at
org.jboss.aspects.currentinvocation.CurrentInvocationInterceptor.invoke(CurrentInvocationInterceptor.java:67)
[:1.0.1]
at
org.jboss.aop.joinpoint.ConstructionInvocation.invokeNext(ConstructionInvocation.java:80)
[jboss-aop.jar:2.2.1.Alpha3]
at
org.jboss.ejb3.interceptors.container.AbstractContainer.invokeCallback(AbstractContainer.java:258)
[:1.0.7]
... 63 more
09:30:13,778 ERROR [org.jboss.profileservice.bootstrap] Failed to load profile::
org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete
deployments (SEE PREVIOUS ERRORS FOR DETAILS):
DEPLOYMENTS MISSING DEPENDENCIES:
Deployment
"auto-timer-initializer:vfs:///home/mgencur/Java/jboss-6.0.x/jboss-6.0.0-SNAPSHOT/server/all/deploy/weld-pastecode.war$PopulateDatabase"
is missing the following dependencies:
Dependency
"jboss.j2ee:jar=weld-pastecode.war,name=PopulateDatabase,service=EJB3" (should
be in state "Installed", but is actually in state "**ERROR**")
Deployment
"auto-timer-initializer:vfs:///home/mgencur/Java/jboss-6.0.x/jboss-6.0.0-SNAPSHOT/server/all/deploy/weld-pastecode.war$TimerStartup"
is missing the following dependencies:
Dependency
"jboss.j2ee:jar=weld-pastecode.war,name=TimerStartup,service=EJB3" (should be in
state "Installed", but is actually in state "**ERROR**")
Deployment
"jboss.j2ee:jar=weld-pastecode.war,name=PopulateDatabase,service=EJB3_endpoint"
is missing the following dependencies:
Dependency
"jboss.j2ee:jar=weld-pastecode.war,name=PopulateDatabase,service=EJB3" (should
be in state "Installed", but is actually in state "**ERROR**")
Deployment
"jboss.j2ee:jar=weld-pastecode.war,name=TimerStartup,service=EJB3_endpoint" is
missing the following dependencies:
Dependency
"jboss.j2ee:jar=weld-pastecode.war,name=TimerStartup,service=EJB3" (should be in
state "Installed", but is actually in state "**ERROR**")
Deployment "jboss.web.deployment:war=/weld-pastecode" is missing the
following dependencies:
Dependency
"vfs:///home/mgencur/Java/jboss-6.0.x/jboss-6.0.0-SNAPSHOT/server/all/deploy/weld-pastecode.war_WeldBootstrapBean"
(should be in state "Start", but is actually in state "Create")
Deployment
"vfs:///home/mgencur/Java/jboss-6.0.x/jboss-6.0.0-SNAPSHOT/server/all/deploy/weld-pastecode.war$PopulateDatabase"
is missing the following dependencies:
Dependency
"jboss.j2ee:jar=weld-pastecode.war,name=PopulateDatabase,service=EJB3" (should
be in state "Described", but is actually in state "**ERROR**")
Deployment
"vfs:///home/mgencur/Java/jboss-6.0.x/jboss-6.0.0-SNAPSHOT/server/all/deploy/weld-pastecode.war$TimerStartup"
is missing the following dependencies:
Dependency
"jboss.j2ee:jar=weld-pastecode.war,name=TimerStartup,service=EJB3" (should be in
state "Described", but is actually in state "**ERROR**")
Deployment
"vfs:///home/mgencur/Java/jboss-6.0.x/jboss-6.0.0-SNAPSHOT/server/all/deploy/weld-pastecode.war_WBInjector"
is missing the following dependencies:
Dependency
"vfs:///home/mgencur/Java/jboss-6.0.x/jboss-6.0.0-SNAPSHOT/server/all/deploy/weld-pastecode.war_WeldBootstrapBean"
(should be in state "Installed", but is actually in state "Create")
Deployment
"vfs:///home/mgencur/Java/jboss-6.0.x/jboss-6.0.0-SNAPSHOT/server/all/deploy/weld-pastecode.war_WeldBootstrapBean"
is missing the following dependencies:
Dependency
"jboss.j2ee:jar=weld-pastecode.war,name=TimerStartup,service=EJB3" (should be in
state "Create", but is actually in state "**ERROR**")
Dependency
"jboss.j2ee:jar=weld-pastecode.war,name=PopulateDatabase,service=EJB3" (should
be in state "Create", but is actually in state "**ERROR**")
DEPLOYMENTS IN ERROR:
Deployment "jboss.j2ee:jar=weld-pastecode.war,name=TimerStartup,service=EJB3"
is in error due to the following reason(s): javax.naming.NameNotFoundException:
weld-pastecode not bound, **ERROR**
Deployment
"jboss.j2ee:jar=weld-pastecode.war,name=PopulateDatabase,service=EJB3" is in
error due to the following reason(s): javax.naming.NameNotFoundException: weld-pastecode
not bound, **ERROR**
at
org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1228)
[:2.2.0.Alpha6]
at
org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:905)
[:2.2.0.Alpha6]
at
org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.checkComplete(MainDeployerPlugin.java:87)
[:6.0.0-SNAPSHOT]
at
org.jboss.profileservice.deployment.ProfileDeployerPluginRegistry.checkAllComplete(ProfileDeployerPluginRegistry.java:118)
[:0.1.0.Alpha1]
at
org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:133)
[:6.0.0-SNAPSHOT]
at
org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56)
[:6.0.0-SNAPSHOT]
at
org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827)
[jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]
at
org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417)
[jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]
at java.lang.Thread.run(Thread.java:619) [:1.6.0_21]
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: