[JBoss Seam] - Re: Event scoped component accessing Conversion scope
by quilleashm
Done some more investigation into this. I have a minimal test case.
JSF page
| <?xml version="1.0" encoding="UTF-8"?>
| <!DOCTYPE html
| PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
| <html xmlns="http://www.w3.org/1999/xhtml"
| xmlns:ui="http://java.sun.com/jsf/facelets"
| xmlns:f="http://java.sun.com/jsf/core"
| xmlns:h="http://java.sun.com/jsf/html">
| <head>
| <title>Element Name Search</title>
| </head>
| <body>
| <h:form>
| <h:inputText value="#{elementSearchAction.searchString}" binding="#{elementSearchAction.searchStringInput}" />
| <h:commandButton value="Search" action="#{elementSearchAction.find}"/>
| </h:form>
| </body>
| </html>
|
Action component
| @Name( "elementSearchAction" )
| @Scope( ScopeType.EVENT )
| public class ElementSearchAction
| {
| @In( create = true )
| private Session referenceSession;
|
| private String searchString = "";
|
| private UIInput searchStringInput;
|
| public void find()
| {
| referenceSession.createQuery( "from Element where eltName like :eltName" ).setParameter( "eltName", searchString + "%" ).list();
| }
|
| public String getSearchString()
| {
| return searchString;
| }
|
| public void setSearchString( String searchString )
| {
| this.searchString = searchString;
| }
|
| public UIInput getSearchStringInput()
| {
| return searchStringInput;
| }
|
| public void setSearchStringInput( UIInput searchStringInput )
| {
| this.searchStringInput = searchStringInput;
| }
| }
|
The problem happens when a post-back is done to the page (hit the search button) and the restore view phase calls through to setSearchStringInput() to bind the control to the bean. At this point the Seam bijection interceptor jumps in and tries to populate the referenceSession but because the conversation context is not active yet it fails to do this.
Removing the binding of the input control and the form works fine on a post-back.
Changing the action to be conversation scoped gives this..
| binding="#{elementSearchAction.searchStringInput}": Target Unreachable, identifier 'elementSearchAction' resolved to null
|
presumably because the restore view phase is trying to do this binding but the conversation scope is not active yet.
I definately need to bind controls into the beans to do dynamic manipulation of controls. Do I need to rethink my component structure? Or something else? Is deferring seam bijection until after the restore view phase a possibility?
Cheers.
Mike.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993328#3993328
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993328
19 years, 4 months
[EJB 3.0] - <timeout-method> in ejb-jar.xml is supported in ebj3 RC9?
by goldfrog
I wrote a stateless session bean with timeservice. i don't want to use annonation @Timeout, so how can i define some timeout method in ejb-jar.xml?
i followed the ejb3 core specification and some examples in Mastering Enterprise JavaBeans? 3.0.
i added the following lines for the SLSB in ejb-jar.xml
<timeout-method>
<method-name>ejbTimeout</method-name>
<method-params>
<method-param>javax.ejb.Timer</method-param>
</method-params>
</timeout-method>
the timeout method defined in my SLSB(without @Timeout annotation) :
public void ejbTimeout(Timer timer) {
......
}
the deployments runs fine, and i successfully create a timer for the SLSB
but after a little while when the timeout method should be called, i receive an EJBException in console:
javax.ejb.EJBException: No method has been annotated with @Timeout
if i add @Timeout for the ejbTimeout(Timer timer) or make my Stateless Session Bean class implement javax.ejb.TimedObject , the EJBException disappears, ejbTimeout(Timer timer) is called and everything is ok.
My Environments JBoss 4.0.5.G.A JBoss EJB3 RC9
I want to know wether there is anything wrong for my code or ejb-jar.xml or just current ejb3 implementation does not support <timeout-method> now.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993327#3993327
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993327
19 years, 4 months
[Clustering/JBoss] - Unknown exceptions in jboss 5
by @jb0ss
2006-12-13 14:39:03,512 DEBUG [org.jboss.iiop.CorbaORBService] Starting jboss:service=CorbaORB
| 2006-12-13 14:39:03,514 DEBUG [org.jboss.iiop.CorbaORBService] Using OAIAddr=null
| 2006-12-13 14:39:03,524 DEBUG [org.jboss.iiop.CorbaORBService] Ignoring sunJDK14IsLocalBugFix=true due to inability to load org.jboss.iiop.SunJDK14IsLocalBugFix
| java.lang.ClassNotFoundException: No ClassLoaders found for: org.jboss.iiop.SunJDK14IsLocalBugFix
| at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:306)
| at org.jboss.mx.loading.UnifiedClassLoader.loadClassImpl(UnifiedClassLoader.java:275)
| at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:406)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| at org.jboss.iiop.CorbaORBService.startService(CorbaORBService.java:231)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
| at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:167)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.ServiceControllerContextAction.install(ServiceControllerContextAction.java:46)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:226)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:198)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:709)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:429)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:538)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:472)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:320)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:190)
| at org.jboss.system.ServiceController.doChange(ServiceController.java:656)
| at org.jboss.system.ServiceController.start(ServiceController.java:431)
| at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:124)
| at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:85)
| at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:44)
| at org.jboss.deployers.plugins.deployers.helpers.AbstractSimpleRealDeployer.deploy(AbstractSimpleRealDeployer.java:53)
| at org.jboss.deployers.plugins.deployer.AbstractSimpleDeployer.commitDeploy(AbstractSimpleDeployer.java:52)
| at org.jboss.deployers.plugins.deployer.DeployerWrapper.commitDeploy(DeployerWrapper.java:145)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.commitDeploy(MainDeployerImpl.java:440)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.commitDeploy(MainDeployerImpl.java:451)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.process(MainDeployerImpl.java:381)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:366)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.bootstrap(ProfileServiceBootstrap.java:246)
| at org.jboss.kernel.plugins.bootstrap.AbstractBootstrap.run(AbstractBootstrap.java:89)
| at org.jboss.system.server.profileservice.ServerImpl.doStart(ServerImpl.java:401)
| at org.jboss.system.server.profileservice.ServerImpl.start(ServerImpl.java:340)
| at org.jboss.Main.boot(Main.java:210)
| at org.jboss.Main$1.run(Main.java:508)
| at java.lang.Thread.run(Thread.java:595)
| 2006-12-13 14:39:03,543 DEBUG [org.jboss.iiop.CorbaORBService] Adding portable interceptor initializer: org.jboss.iiop.codebase.CodebaseInterceptorInitializer
| 2006-12-13 14:39:03,543 DEBUG [org.jboss.iiop.CorbaORBService] Adding portable interceptor initializer: org.jboss.iiop.csiv2.CSIv2Initializer
| .....
| .....
| 2006-12-13 14:39:16,248 DEBUG [org.jboss.deployers.plugins.deployment.MainDeployerImpl] Deployed: file:/opt/jboss-5.0.0.Beta1/server/all/deploy/sqlexception-service.xml
| 2006-12-13 14:39:16,251 ERROR [org.jboss.system.server.profileservice.ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
|
| *** CONTEXTS IN ERROR: Name -> Error
|
| jboss.web.deployment:war=/ROOT -> LifecycleException: Manager has not yet been started
|
|
| 2006-12-13 14:39:16,258 DEBUG [org.jboss.web.tomcat.tc6.deployers.TomcatDeployer] Saw org.jboss.system.server.started notification, starting connectors
| 2006-12-13 14:39:16,311 INFO [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
| .....
| .....
| 2006-12-13 15:06:36,432 DEBUG [org.jboss.ha.framework.interfaces.HAPartition.DefaultPartition] membership changed from 1 to 1
| 2006-12-13 15:06:36,433 WARN [org.jboss.ha.framework.server.ClusterPartition] Stopping failed ClusterPartition
| javax.naming.NoInitialContextException: Cannot instantiate class: org.jboss.iiop.naming.ORBInitialContextFactory [Root exception is java.lang.ClassNotFoundException: org.jboss.iiop.naming.ORBInitialContextFactory]
| at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:657)
| at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
| at javax.naming.InitialContext.init(InitialContext.java:223)
| at javax.naming.InitialContext.<init>(InitialContext.java:175)
| at org.jboss.ha.framework.server.ClusterPartition.stopService(ClusterPartition.java:402)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStop(ServiceMBeanSupport.java:315)
| at org.jboss.system.ServiceMBeanSupport.stop(ServiceMBeanSupport.java:206)
| at AOPContainerProxy$9.stop(AOPContainerProxy$9.java)
| 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:585)
| at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:55)
| at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:108)
| at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)
| at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:71)
| at org.jboss.kernel.plugins.dependency.LifecycleAction.uninstallAction(LifecycleAction.java:169)
| at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.uninstall(KernelControllerContextAction.java:140)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.uninstall(AbstractControllerContextActions.java:58)
| at org.jboss.dependency.plugins.AbstractControllerContext.uninstall(AbstractControllerContext.java:236)
| at org.jboss.dependency.plugins.AbstractController.uninstall(AbstractController.java:723)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:685)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:613)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:664)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:613)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:664)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:613)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:664)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:613)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:664)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:613)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:664)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:613)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:664)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:325)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:190)
| at org.jboss.system.ServiceController.doChange(ServiceController.java:656)
| at org.jboss.system.ServiceController.stop(ServiceController.java:481)
| at org.jboss.system.deployers.ServiceDeployer.stop(ServiceDeployer.java:131)
| at org.jboss.system.deployers.ServiceDeployer.undeploy(ServiceDeployer.java:111)
| at org.jboss.system.deployers.ServiceDeployer.undeploy(ServiceDeployer.java:44)
| at org.jboss.deployers.plugins.deployers.helpers.AbstractSimpleRealDeployer.undeploy(AbstractSimpleRealDeployer.java:60)
| at org.jboss.deployers.plugins.deployer.AbstractSimpleDeployer.prepareUndeploy(AbstractSimpleDeployer.java:42)
| at org.jboss.deployers.plugins.deployer.DeployerWrapper.prepareUndeploy(DeployerWrapper.java:105)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.prepareUndeploy(MainDeployerImpl.java:419)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.prepareUndeploy(MainDeployerImpl.java:428)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.process(MainDeployerImpl.java:357)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.shutdown(MainDeployerImpl.java:482)
| at org.jboss.system.server.profileservice.ServerImpl$ShutdownHook.shutdownDeployments(ServerImpl.java:739)
| at org.jboss.system.server.profileservice.ServerImpl$ShutdownHook.shutdown(ServerImpl.java:721)
| at org.jboss.system.server.profileservice.ServerImpl$ShutdownHook.run(ServerImpl.java:706)
| Caused by: java.lang.ClassNotFoundException: org.jboss.iiop.naming.ORBInitialContextFactory
| at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
| at java.security.AccessController.doPrivileged(Native Method)
| at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
| at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
| at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
| at java.lang.Class.forName0(Native Method)
| at java.lang.Class.forName(Class.java:242)
| at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java:42)
| at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:654)
| ... 50 more
| 2006-12-13 15:06:36,439 DEBUG [org.jboss.system.ServiceController] destroying service: jboss:service=invoker,type=jrmpha
| 2006-12-13 15:06:36,439 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvokerHA] Destroying jboss:service=invoker,type=jrmpha
| 2006-12-13 15:06:36,440 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvokerHA] Destroyed jboss:service=invoker,type=jrmpha
| ....
| ....
| 2006-12-13 15:06:37,561 INFO [org.apache.coyote.http11.Http11Protocol] Stopping Coyote HTTP/1.1 on http-0.0.0.0-8080
| 2006-12-13 15:06:37,567 INFO [org.apache.coyote.ajp.AjpProtocol] Stopping Coyote AJP/1.3 on ajp-0.0.0.0-8009
| 2006-12-13 15:06:37,570 INFO [org.apache.catalina.core.AprLifecycleListener] Failed shutdown of Apache Portable Runtime
| 2006-12-13 15:06:37,575 ERROR [org.apache.catalina.core.StandardContext] error stopping
| LifecycleException: Manager has not yet been started
| at org.apache.catalina.session.StandardManager.stop(StandardManager.java:660)
| at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4498)
| at org.apache.catalina.core.StandardContext.preDeregister(StandardContext.java:5234)
| at org.apache.tomcat.util.modeler.BaseModelMBean.preDeregister(BaseModelMBean.java:1130)
| at org.jboss.mx.server.RawDynamicInvoker.preDeregister(RawDynamicInvoker.java:270)
| at org.jboss.mx.server.registry.BasicMBeanRegistry.handlePreDeregister(BasicMBeanRegistry.java:432)
| at org.jboss.mx.server.registry.BasicMBeanRegistry.unregisterMBean(BasicMBeanRegistry.java:465)
| at sun.reflect.GeneratedMethodAccessor76.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:138)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:140)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
| at org.jboss.mx.server.MBeanServerImpl$1.run(MBeanServerImpl.java:400)
| at java.security.AccessController.doPrivileged(Native Method)
| at org.jboss.mx.server.MBeanServerImpl.unregisterMBean(MBeanServerImpl.java:395)
| at org.jboss.web.tomcat.tc6.deployers.TomcatDeployer.stop(TomcatDeployer.java:576)
| 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:585)
| at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:55)
| at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:108)
| at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)
| at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:71)
| at org.jboss.kernel.plugins.dependency.LifecycleAction.uninstallAction(LifecycleAction.java:169)
| at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.uninstall(KernelControllerContextAction.java:140)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.uninstall(AbstractControllerContextActions.java:58)
| at org.jboss.dependency.plugins.AbstractControllerContext.uninstall(AbstractControllerContext.java:236)
| at org.jboss.dependency.plugins.AbstractController.uninstall(AbstractController.java:723)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:685)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:613)
| at org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:664)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:325)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:190)
| at org.jboss.system.ServiceController.doChange(ServiceController.java:656)
| at org.jboss.system.ServiceController.stop(ServiceController.java:481)
| at org.jboss.system.deployers.ServiceDeployer.stop(ServiceDeployer.java:131)
| at org.jboss.system.deployers.ServiceDeployer.undeploy(ServiceDeployer.java:111)
| at org.jboss.system.deployers.ServiceDeployer.undeploy(ServiceDeployer.java:44)
| at org.jboss.deployers.plugins.deployers.helpers.AbstractSimpleRealDeployer.undeploy(AbstractSimpleRealDeployer.java:60)
| at org.jboss.deployers.plugins.deployer.AbstractSimpleDeployer.prepareUndeploy(AbstractSimpleDeployer.java:42)
| at org.jboss.deployers.plugins.deployer.DeployerWrapper.prepareUndeploy(DeployerWrapper.java:105)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.prepareUndeploy(MainDeployerImpl.java:419)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.prepareUndeploy(MainDeployerImpl.java:428)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.process(MainDeployerImpl.java:357)
| at org.jboss.deployers.plugins.deployment.MainDeployerImpl.shutdown(MainDeployerImpl.java:482)
| at org.jboss.system.server.profileservice.ServerImpl$ShutdownHook.shutdownDeployments(ServerImpl.java:739)
| at org.jboss.system.server.profileservice.ServerImpl$ShutdownHook.shutdown(ServerImpl.java:721)
| at org.jboss.system.server.profileservice.ServerImpl$ShutdownHook.run(ServerImpl.java:706)
| 2006-12-13 15:06:37,584 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] Stopping jboss.ejb:service=EJBTimerService
| 2006-12-13 15:06:37,585 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] Stopped jboss.ejb:service=EJBTimerService
| 2006-12-13 15:06:37,586 DEBUG [org.jboss.resource.work.JBossWorkManager] Stopping jboss.jca:service=WorkManager
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993325#3993325
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3993325
19 years, 4 months