[JBoss jBPM] - Re: upload file in a task ?
by vtysh
You shouldn't put action command to the tf:saveButton directly because all jbpm form actions described directly in the j4j:taskForm tag in the JBPM console application.
To upload files in the task variable map you should to have own tag and use it inside standard action components commandButton or commandLink in your task form. For example:
| <gd:inputFile target="#{stream}"/>
| <h:commandLink value="upload">
| <customnamespace:addFile dataStream="#{stream}" target="#{var['file']}"/>
| </h:commandLink>
|
To avoid variable map reload you should to specify some context variable value during upload action and check it on variable map loading action. If variable is set then do not reaload variable map.
Replace the line in the task.xhtml
| <j4j:getVariableMap target="#{taskVariableMap}" value="#{task}"/>
|
with the next
| <j4j:getVariableMap target="#{taskVariableMap}" value="#{task}" unless="#{yourCustomVariableWhichIndicatesFileUpload}"/>
|
And of course do not forget to change form enctype to multipart.
Hope it will help to everybody searching the JBPM console file uploading solution for task
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4168990#4168990
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4168990
17 years, 8 months
[Persistence, JBoss/CMP, Hibernate, Database] - Re: lazily initialize collections in their getters
by mars1412
thanks for the answers
"jaikiran" wrote : Well, that's what the user would expect right? If someone explicitly sets it to null, then he should get back null, isn't it?
Yes, you are right. In the case of collection initalisation the other approach is more appropriate.
When I think about it, the lazy initalization approach in the getters came from handling embedded components.
As defined by hibernate, the embedded component will be null, if all its elements are null.
so hibernate would set the embedded component to null, if all its fields in the database are null.
that would break code like this:
myEntity().getEmbedded().setEmbeddedField(someValue)
In this case this initalization would not help:
private EmbeddedComponentTyp embedded = new EmbeddedComponentTyp();
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4168977#4168977
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4168977
17 years, 8 months
[Installation, Configuration & DEPLOYMENT] - Re: Trying to deploy Railo as war file
by am2605
Hi,
Not really sure if this helps or not. Everything seems okay up to this point:
| 2008-08-06 20:23:11,343 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) warURL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/railo.war/
| 2008-08-06 20:23:11,343 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/railo, vfsUrl=railo.war
| 2008-08-06 20:23:11,437 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Using session cookies default setting
| 2008-08-06 20:23:11,953 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] (main) Error installing to Start: name=jboss.web.deployment:war=/railo state=Create mode=Manual requiredState=Installed
| org.jboss.deployers.spi.DeploymentException: URL vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/railo.war/ deployment failed
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:360)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:139)
| at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:431)
| at org.jboss.web.deployers.WebModule.startModule(WebModule.java:112)
| at org.jboss.web.deployers.WebModule.start(WebModule.java:90)
| 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:597)
| 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:206)
| at $Proxy35.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:271)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:624)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:442)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:88)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:672)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:455)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:257)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:135)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:619)
| 2008-08-06 20:23:11,968 DEBUG [org.jboss.system.ServiceCreator] (main) Removing mbean from server: jboss.web.deployment:war=/railo
| 2008-08-06 20:23:11,968 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) webContext: /jbossws
| 2008-08-06 20:23:11,968 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) warURL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jbossws.sar/jbossws-management.war/
| 2008-08-06 20:23:11,968 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jbossws, vfsUrl=jbossws.sar/jbossws-management.war
| 2008-08-06 20:23:11,968 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Using session cookies default setting
| 2008-08-06 20:23:12,921 DEBUG [org.jboss.web.tomcat.service.WebCtxLoader] (main) injectionContainer enabled and processing beginning with JBoss WebCtxLoader
| 2008-08-06 20:23:13,296 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Creating ENC using ClassLoader: BaseClassLoader@53be7c{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jbossws.sar/jbossws-management.war/}
| 2008-08-06 20:23:13,421 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Unable to retrieve orb
| javax.management.InstanceNotFoundException: jboss:service=CorbaORB is not registered.
| at org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:529)
| at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:559)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment$EncListener.lifecycleEvent(TomcatDeployment.java:496)
| at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
| at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:346)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:139)
| at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:431)
| at org.jboss.web.deployers.WebModule.startModule(WebModule.java:112)
| at org.jboss.web.deployers.WebModule.start(WebModule.java:90)
| 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:597)
| 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:206)
| at $Proxy35.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:271)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:624)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:442)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:88)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:672)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:455)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:257)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:135)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:619)
| 2008-08-06 20:23:13,421 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/TransactionSynchronizationRegistry to JNDI name: java:TransactionSynchronizationRegistry
| 2008-08-06 20:23:13,421 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/UserTransaction to JNDI name: UserTransaction
| 2008-08-06 20:23:13,421 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) linkSecurityDomain
| 2008-08-06 20:23:13,421 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) No security-domain given, using default: java:/jaas/jboss-web-policy
| 2008-08-06 20:23:13,421 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linking security/securityMgr to JNDI name: java:/jaas/jboss-web-policy
| 2008-08-06 20:23:13,500 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) injectionContainer enabled and processing beginning
| 2008-08-06 20:23:13,734 DEBUG [org.jboss.web.tomcat.filters.ReplyHeaderFilter] (main) Adding header name: X-Powered-By='Servlet 2.5; JBoss-5.0/JBossWeb-2.0/Tomcat-6.0'
| 2008-08-06 20:23:14,125 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Initialized: {WebApplication: /C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jbossws.sar/jbossws-management.war/, URL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jbossws.sar/jbossws-management.war/, classLoader: BaseClassLoader@53be7c{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jbossws.sar/jbossws-management.war/}:5488252} jboss.web:j2eeType=WebModule,name=//localhost/jbossws,J2EEApplication=none,J2EEServer=none
| 2008-08-06 20:23:14,125 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) webContext: /jmx-console
| 2008-08-06 20:23:14,125 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) warURL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jmx-console.war/
| 2008-08-06 20:23:14,125 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jmx-console, vfsUrl=jmx-console.war
| 2008-08-06 20:23:14,125 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Using session cookies default setting
| 2008-08-06 20:23:14,687 DEBUG [org.jboss.web.tomcat.service.WebCtxLoader] (main) injectionContainer enabled and processing beginning with JBoss WebCtxLoader
| 2008-08-06 20:23:14,718 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Creating ENC using ClassLoader: BaseClassLoader@ad78a2{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jmx-console.war/}
| 2008-08-06 20:23:14,765 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Unable to retrieve orb
| javax.management.InstanceNotFoundException: jboss:service=CorbaORB is not registered.
| at org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:529)
| at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:559)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment$EncListener.lifecycleEvent(TomcatDeployment.java:496)
| at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
| at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:346)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:139)
| at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:431)
| at org.jboss.web.deployers.WebModule.startModule(WebModule.java:112)
| at org.jboss.web.deployers.WebModule.start(WebModule.java:90)
| 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:597)
| 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:206)
| at $Proxy35.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:271)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:624)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:442)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:88)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:672)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:455)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:257)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:135)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:619)
| 2008-08-06 20:23:14,765 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/TransactionSynchronizationRegistry to JNDI name: java:TransactionSynchronizationRegistry
| 2008-08-06 20:23:14,765 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/UserTransaction to JNDI name: UserTransaction
| 2008-08-06 20:23:14,765 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) linkSecurityDomain
| 2008-08-06 20:23:14,765 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) No security-domain given, using default: java:/jaas/jboss-web-policy
| 2008-08-06 20:23:14,765 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linking security/securityMgr to JNDI name: java:/jaas/jboss-web-policy
| 2008-08-06 20:23:14,781 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) injectionContainer enabled and processing beginning
| 2008-08-06 20:23:14,796 DEBUG [org.jboss.web.tomcat.filters.ReplyHeaderFilter] (main) Adding header name: X-Powered-By='Servlet 2.5; JBoss-5.0/JBossWeb-2.0/Tomcat-6.0'
| 2008-08-06 20:23:14,828 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Initialized: {WebApplication: /C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jmx-console.war/, URL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jmx-console.war/, classLoader: BaseClassLoader@ad78a2{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/jmx-console.war/}:11368610} jboss.web:j2eeType=WebModule,name=//localhost/jmx-console,J2EEApplication=none,J2EEServer=none
| 2008-08-06 20:23:14,828 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) webContext: /web-console
| 2008-08-06 20:23:14,828 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) warURL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/management/console-mgr.sar/web-console.war/
| 2008-08-06 20:23:14,828 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/web-console, vfsUrl=management/console-mgr.sar/web-console.war
| 2008-08-06 20:23:14,828 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Using session cookies default setting
| 2008-08-06 20:23:14,859 DEBUG [org.jboss.web.tomcat.service.WebCtxLoader] (main) injectionContainer enabled and processing beginning with JBoss WebCtxLoader
| 2008-08-06 20:23:15,125 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Creating ENC using ClassLoader: BaseClassLoader@10de2bd{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/management/console-mgr.sar/web-console.war/}
| 2008-08-06 20:23:15,156 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Unable to retrieve orb
| javax.management.InstanceNotFoundException: jboss:service=CorbaORB is not registered.
| at org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:529)
| at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:559)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment$EncListener.lifecycleEvent(TomcatDeployment.java:496)
| at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
| at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:346)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:139)
| at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:431)
| at org.jboss.web.deployers.WebModule.startModule(WebModule.java:112)
| at org.jboss.web.deployers.WebModule.start(WebModule.java:90)
| 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:597)
| 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:206)
| at $Proxy35.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:271)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:624)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:442)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:88)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:672)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:455)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:257)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:135)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:619)
| 2008-08-06 20:23:15,171 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/TransactionSynchronizationRegistry to JNDI name: java:TransactionSynchronizationRegistry
| 2008-08-06 20:23:15,171 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/UserTransaction to JNDI name: UserTransaction
| 2008-08-06 20:23:15,171 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) linkSecurityDomain
| 2008-08-06 20:23:15,171 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) No security-domain given, using default: java:/jaas/jboss-web-policy
| 2008-08-06 20:23:15,171 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linking security/securityMgr to JNDI name: java:/jaas/jboss-web-policy
| 2008-08-06 20:23:15,171 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) injectionContainer enabled and processing beginning
| 2008-08-06 20:23:15,187 DEBUG [org.jboss.web.tomcat.filters.ReplyHeaderFilter] (main) Adding header name: X-Powered-By='Servlet 2.5; JBoss-5.0/JBossWeb-2.0/Tomcat-6.0'
| 2008-08-06 20:23:17,218 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Initialized: {WebApplication: /C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/management/console-mgr.sar/web-console.war/, URL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/management/console-mgr.sar/web-console.war/, classLoader: BaseClassLoader@10de2bd{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/management/console-mgr.sar/web-console.war/}:17687229} jboss.web:j2eeType=WebModule,name=//localhost/web-console,J2EEApplication=none,J2EEServer=none
| 2008-08-06 20:23:17,218 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) webContext: /ROOT
| 2008-08-06 20:23:17,218 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) warURL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/ROOT.war/
| 2008-08-06 20:23:17,218 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy root context=/ROOT
| 2008-08-06 20:23:17,218 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/, vfsUrl=ROOT.war
| 2008-08-06 20:23:17,218 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Using session cookies default setting
| 2008-08-06 20:23:17,234 DEBUG [org.jboss.web.tomcat.service.WebCtxLoader] (main) injectionContainer enabled and processing beginning with JBoss WebCtxLoader
| 2008-08-06 20:23:17,250 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Creating ENC using ClassLoader: BaseClassLoader@1893008{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/ROOT.war/}
| 2008-08-06 20:23:17,265 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Unable to retrieve orb
| javax.management.InstanceNotFoundException: jboss:service=CorbaORB is not registered.
| at org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:529)
| at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:559)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment$EncListener.lifecycleEvent(TomcatDeployment.java:496)
| at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
| at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:346)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:139)
| at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:431)
| at org.jboss.web.deployers.WebModule.startModule(WebModule.java:112)
| at org.jboss.web.deployers.WebModule.start(WebModule.java:90)
| 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:597)
| 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:206)
| at $Proxy35.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:271)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:624)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:442)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:88)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:672)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:455)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:257)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:135)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:619)
| 2008-08-06 20:23:17,281 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/TransactionSynchronizationRegistry to JNDI name: java:TransactionSynchronizationRegistry
| 2008-08-06 20:23:17,281 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/UserTransaction to JNDI name: UserTransaction
| 2008-08-06 20:23:17,281 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) linkSecurityDomain
| 2008-08-06 20:23:17,281 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) No security-domain given, using default: java:/jaas/jboss-web-policy
| 2008-08-06 20:23:17,281 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linking security/securityMgr to JNDI name: java:/jaas/jboss-web-policy
| 2008-08-06 20:23:17,281 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) injectionContainer enabled and processing beginning
| 2008-08-06 20:23:17,296 DEBUG [org.jboss.web.tomcat.filters.ReplyHeaderFilter] (main) Adding header name: X-Powered-By='Servlet 2.5; JBoss-5.0/JBossWeb-2.0/Tomcat-6.0'
| 2008-08-06 20:23:17,312 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Initialized: {WebApplication: /C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/ROOT.war/, URL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/ROOT.war/, classLoader: BaseClassLoader@1893008{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/ROOT.war/}:25767944} jboss.web:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none
| 2008-08-06 20:23:17,312 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) webContext: /invoker
| 2008-08-06 20:23:17,312 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) warURL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/http-invoker.sar/invoker.war/
| 2008-08-06 20:23:17,312 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/invoker, vfsUrl=http-invoker.sar/invoker.war
| 2008-08-06 20:23:17,312 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Using session cookies default setting
| 2008-08-06 20:23:17,328 DEBUG [org.jboss.web.tomcat.service.WebCtxLoader] (main) injectionContainer enabled and processing beginning with JBoss WebCtxLoader
| 2008-08-06 20:23:17,515 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Creating ENC using ClassLoader: BaseClassLoader@1bd871{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/http-invoker.sar/invoker.war/}
| 2008-08-06 20:23:17,593 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Unable to retrieve orb
| javax.management.InstanceNotFoundException: jboss:service=CorbaORB is not registered.
| at org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:529)
| at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:559)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment$EncListener.lifecycleEvent(TomcatDeployment.java:496)
| at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
| at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:346)
| at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:139)
| at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:431)
| at org.jboss.web.deployers.WebModule.startModule(WebModule.java:112)
| at org.jboss.web.deployers.WebModule.start(WebModule.java:90)
| 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:597)
| 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:206)
| at $Proxy35.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:271)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:624)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:442)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:88)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:672)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:455)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:257)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:135)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:619)
| 2008-08-06 20:23:17,593 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/TransactionSynchronizationRegistry to JNDI name: java:TransactionSynchronizationRegistry
| 2008-08-06 20:23:17,593 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linked java:comp/UserTransaction to JNDI name: UserTransaction
| 2008-08-06 20:23:17,593 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) linkSecurityDomain
| 2008-08-06 20:23:17,593 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Linking security/securityMgr to JNDI name: java:/jaas/jmx-console
| 2008-08-06 20:23:17,609 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) injectionContainer enabled and processing beginning
| 2008-08-06 20:23:17,656 DEBUG [org.jboss.web.tomcat.filters.ReplyHeaderFilter] (main) Adding header name: X-Powered-By='Servlet 2.5; JBoss-5.0/JBossWeb-2.0/Tomcat-6.0'
| 2008-08-06 20:23:17,671 DEBUG [org.jboss.invocation.http.servlet.InvokerServlet] (main) localInvokerName=jboss:service=invoker,type=http
| 2008-08-06 20:23:17,687 DEBUG [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) Initialized: {WebApplication: /C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/http-invoker.sar/invoker.war/, URL: vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/http-invoker.sar/invoker.war/, classLoader: BaseClassLoader@1bd871{vfsfile:/C:/jboss/jboss-5.0.0.CR1/server/cfusion/deploy/http-invoker.sar/invoker.war/}:1824881} jboss.web:j2eeType=WebModule,name=//localhost/invoker,J2EEApplication=none,J2EEServer=none
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) JndiName set to DefaultDS in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) SecurityDomainJndiName set to HsqlDbRealm in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) SubjectFactory set to org.jboss.security.integration.JBossSecuritySubjectFactory@18fc1a in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) CachedConnectionManager set to jboss.jca:service=CachedConnectionManager in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) JaasSecurityManagerService set to jboss.security:service=JaasSecurityManager in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) ManagedConnectionPool set to jboss.jca:service=ManagedConnectionPool,name=DefaultDS in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) TransactionManagerService set to jboss:service=TransactionManager in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) LocalTransactions set to true in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) TrackConnectionByTx set to true in jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,734 DEBUG [org.jboss.system.ServiceConfigurator] (main) JndiName set to JmsXA in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.system.ServiceConfigurator] (main) SecurityDomainJndiName set to JmsXARealm in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.system.ServiceConfigurator] (main) SubjectFactory set to org.jboss.security.integration.JBossSecuritySubjectFactory@18fc1a in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.system.ServiceConfigurator] (main) CachedConnectionManager set to jboss.jca:service=CachedConnectionManager in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.system.ServiceConfigurator] (main) JaasSecurityManagerService set to jboss.security:service=JaasSecurityManager in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.system.ServiceConfigurator] (main) ManagedConnectionPool set to jboss.jca:service=ManagedConnectionPool,name=JmsXA in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.system.ServiceConfigurator] (main) TransactionManagerService set to jboss:service=TransactionManager in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.system.ServiceConfigurator] (main) LocalTransactions set to false in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.system.ServiceConfigurator] (main) TrackConnectionByTx set to false in jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.resource.connectionmanager.TxConnectionManager] (main) Creating jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.resource.connectionmanager.TxConnectionManager] (main) Created jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Creating jboss.jca:service=DataSourceBinding,name=DefaultDS
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Created jboss.jca:service=DataSourceBinding,name=DefaultDS
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.messaging.core.jmx.JDBCPersistenceManagerService] (main) Creating jboss.messaging:service=PersistenceManager
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.messaging.core.jmx.JDBCPersistenceManagerService] (main) Created jboss.messaging:service=PersistenceManager
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.jms.server.plugin.JDBCJMSUserManagerService] (main) Creating jboss.messaging:service=JMSUserManager
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.jms.server.plugin.JDBCJMSUserManagerService] (main) Created jboss.messaging:service=JMSUserManager
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.ejb3.timerservice.quartz.jmx.EJB3TimerService] (main) Creating jboss.ejb:service=EJB3TimerService
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.ejb3.timerservice.quartz.jmx.EJB3TimerService] (main) Created jboss.ejb:service=EJB3TimerService
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.ejb.plugins.keygenerator.hilo.HiLoKeyGeneratorFactory] (main) Creating jboss:service=KeyGeneratorFactory,type=HiLo
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.ejb.plugins.keygenerator.hilo.HiLoKeyGeneratorFactory] (main) Created jboss:service=KeyGeneratorFactory,type=HiLo
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.ejb.txtimer.DatabasePersistencePolicy] (main) Creating jboss.ejb:service=EJBTimerService,persistencePolicy=database
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.ejb.txtimer.DatabasePersistencePolicy] (main) Created jboss.ejb:service=EJBTimerService,persistencePolicy=database
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.jms.server.ServerPeer] (main) Creating jboss.messaging:service=ServerPeer
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.jms.server.ServerPeer] (main) Created jboss.messaging:service=ServerPeer
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] (main) Creating jboss.ejb:service=EJBTimerService
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] (main) Created jboss.ejb:service=EJBTimerService
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.resource.connectionmanager.ManagedConnectionFactoryDeployment] (main) Creating jboss.jca:service=ManagedConnectionFactory,name=JmsXA
| 2008-08-06 20:23:17,750 DEBUG [org.jboss.resource.connectionmanager.ManagedConnectionFactoryDeployment] (main) Created jboss.jca:service=ManagedConnectionFactory,name=JmsXA
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.messaging.core.jmx.MessagingPostOfficeService] (main) Creating jboss.messaging:service=PostOffice
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.messaging.core.jmx.MessagingPostOfficeService] (main) Created jboss.messaging:service=PostOffice
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Creating jboss.messaging.connectionfactory:service=ClusterPullConnectionFactory
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Created jboss.messaging.connectionfactory:service=ClusterPullConnectionFactory
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Creating jboss.messaging.connectionfactory:service=ConnectionFactory
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Created jboss.messaging.connectionfactory:service=ConnectionFactory
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.destination.QueueService] (main) Creating jboss.messaging.destination:service=Queue,name=ExpiryQueue
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.destination.QueueService] (main) Created jboss.messaging.destination:service=Queue,name=ExpiryQueue
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Creating jboss.messaging.connectionfactory:service=ClusteredConnectionFactory
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Created jboss.messaging.connectionfactory:service=ClusteredConnectionFactory
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] (main) Creating jboss.jca:service=ManagedConnectionPool,name=JmsXA
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] (main) Created jboss.jca:service=ManagedConnectionPool,name=JmsXA
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.destination.QueueService] (main) Creating jboss.messaging.destination:service=Queue,name=DLQ
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.jms.server.destination.QueueService] (main) Created jboss.messaging.destination:service=Queue,name=DLQ
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.resource.connectionmanager.TxConnectionManager] (main) Creating jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.resource.connectionmanager.TxConnectionManager] (main) Created jboss.jca:service=TxCM,name=JmsXA
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Creating jboss.jca:service=ConnectionFactoryBinding,name=JmsXA
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Created jboss.jca:service=ConnectionFactoryBinding,name=JmsXA
| 2008-08-06 20:23:17,781 DEBUG [org.jboss.resource.connectionmanager.TxConnectionManager] (main) Starting jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,796 DEBUG [org.jboss.resource.connectionmanager.TxConnectionManager] (main) Started jboss.jca:service=LocalTxCM,name=DefaultDS
| 2008-08-06 20:23:17,796 DEBUG [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Starting jboss.jca:service=DataSourceBinding,name=DefaultDS
| 2008-08-06 20:23:17,828 DEBUG [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Binding object 'org.jboss.resource.adapter.jdbc.WrapperDataSource@99548b' into JNDI at 'java:DefaultDS'
| 2008-08-06 20:23:17,843 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
| 2008-08-06 20:23:17,843 DEBUG [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Started jboss.jca:service=DataSourceBinding,name=DefaultDS
| 2008-08-06 20:23:17,843 DEBUG [org.jboss.messaging.core.jmx.JDBCPersistenceManagerService] (main) Starting jboss.messaging:service=PersistenceManager
| 2008-08-06 20:23:18,062 DEBUG [org.jboss.security.integration.JNDIBasedSecurityManagement] (main) Creating SDC for domain=HsqlDbRealm
| 2008-08-06 20:23:18,125 DEBUG [org.jboss.security.plugins.auth.JaasSecurityManagerBase.HsqlDbRealm] (main) CallbackHandler: org.jboss.security.auth.callback.SecurityAssociationHandler@360482
| 2008-08-06 20:23:18,203 DEBUG [org.jboss.security.plugins.auth.JaasSecurityManagerBase.HsqlDbRealm] (main) CachePolicy set to: org.jboss.util.TimedCachePolicy@57ba9e
| 2008-08-06 20:23:18,203 DEBUG [org.jboss.security.integration.JNDIBasedSecurityManagement] (main) setCachePolicy, c=org.jboss.util.TimedCachePolicy@57ba9e
| 2008-08-06 20:23:18,796 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] (main) Failed to execute: CREATE TABLE JBM_DUAL (DUMMY INTEGER, PRIMARY KEY(DUMMY))
| java.sql.SQLException: Table already exists: JBM_DUAL in statement [CREATE TABLE JBM_DUAL]
| at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
| at org.hsqldb.jdbc.jdbcStatement.fetchResult(Unknown Source)
| at org.hsqldb.jdbc.jdbcStatement.executeUpdate(Unknown Source)
| at org.jboss.resource.adapter.jdbc.WrappedStatement.executeUpdate(WrappedStatement.java:249)
| at org.jboss.messaging.core.impl.JDBCSupport.createSchema(JDBCSupport.java:301)
| at org.jboss.messaging.core.impl.JDBCSupport.start(JDBCSupport.java:167)
| at org.jboss.messaging.core.impl.JDBCPersistenceManager.start(JDBCPersistenceManager.java:142)
| at org.jboss.messaging.core.jmx.JDBCPersistenceManagerService.startService(JDBCPersistenceManagerService.java:98)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:376)
| at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:269)
| 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:597)
| 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.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
| at $Proxy35.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:271)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:624)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:442)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:88)
| at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:46)
| at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
| at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:991)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:672)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:455)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:594)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:541)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:257)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:135)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:409)
| at org.jboss.Main.boot(Main.java:209)
| at org.jboss.Main$1.run(Main.java:544)
| at java.lang.Thread.run(Thread.java:619)
| 2008-08-06 20:23:18,828 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] (main) Failed to execute: CREATE TABLE JBM_MSG_REF (MESSAGE_ID BIGINT, CHANNEL_ID BIGINT, TRANSACTION_ID BIGINT, STATE CHAR(1), ORD BIGINT, PAGE_ORD BIGINT, DELIVERY_COUNT INTEGER, SCHED_DELIVERY BIGINT, PRIMARY KEY(MESSAGE_ID, CHANNEL_ID))
| java.sql.SQLException: Table already exists: JBM_MSG_REF in statement [CREATE TABLE JBM_MSG_REF]
| at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
| at org.hsqldb.jdbc.jdbcStatement.fetchResult(Unknown Source)
| at org.hsqldb.jdbc.jdbcStatement.executeUpdate(Unknown Source)
| at org.jboss.resource.adapter.jdbc.WrappedStatement.executeUpdate(WrappedStatement.java:249)
| at org.jboss.messaging.core.impl.JDBCSupport.createSchema(JDBCSupport.java:301)
| at org.jboss.messaging.core.impl.JDBCSupport.start(JDBCSupport.java:167)
| at org.jboss.messaging.core.impl.JDBCPersistenceManager.start(JDBCPersistenceManager.java:142)
| at org.jboss.messaging.core.jmx.JDBCPersistenceManagerService.startService(JDBCPersistenceManagerService.java:98)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:376)
| at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:269)
| 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:597)
| 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.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
| at $Proxy35.start(Unknown Source)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
| at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
| at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
| at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
| at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:271)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:624)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:442)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4168972#4168972
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4168972
17 years, 8 months