[JBossWS] - SoapBodyImpl, JDK5 and JDom
by wilth
Hello,
I recently tried to upgrade from JDK 1.4 to JDK 5 (we are talking Jboss 4.0.5) but I'm having trouble with the following piece of code:
| org.jdom.Document doc = new org.jdom.Document();
| org.jdom.Element root = new org.jdom.Element("inputData");
| doc.setRootElement(root);
|
| MessageFactory messageFactory = MessageFactory.newInstance();
|
| // Create the SOAP Message
| SOAPMessage requestSoapMessage = messageFactory.createMessage();
|
| DOMOutputter converter = new DOMOutputter();
| org.w3c.dom.Document iDoc = converter.output(doc);
| requestSoapMessage.getSOAPBody().addDocument(iDoc);
|
As you can see, I'm creating an XML Document programmatically with JDom, then I'm converting it into a "standard" DOM and then I'm putting it into a SOAP envelope. The addDocument method throws:
org.w3c.dom.DOMException: NAMESPACE_ERR: An attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
Now this error should be raised when a prefix is used, but no namespace or the qualified name is malformed. However, I'm not using namespaces in my document (other than the empty default NS).
I have tried to add a namespace to the Dom4j Document - that solves the problem. The document (when outputted through a transformer) is well-formed. The problem also does not occur with JDK 1.4 or JDK 6 u1. I'm not sure the problem is with the Jboss WS package either, so please let me know if this is not related to the jboss ws implementation.
Any ideas on why I'm facing this? Thanks for any pointers.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037071#4037071
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4037071
19 years
[JBoss jBPM] - jbpm-liferay integration(in creating time like defintion)
by ganeshbivu
Hi,
I am ganesh here,iam facing with this error entering my xml file in textarea (in definition textarea).its showing invalid xml file.
Thsi is the error showing:This is the code
how can i solve tell me the way.
An error occured while parsing my xml.please check the syntax of my xml.
<?xml version="1.0" encoding="UTF-8"?>
|
| <process-definition
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xsi:noNamespaceSchemaLocation="http://jbpm.org/xsd/jpdl-3.0.xsd"
| name="DocumentWorkFlow">
| <!-- swimlane declarations -->
| <swimlane name="BusinessTeam">
| <assignment expression="user(John)"/>
| <assignment expression="user(Soumitree)"/>
| <assignment expression="user(Tanveer)"/>
| </swimlane>
| <swimlane name="ProjectManager">
| <assignment expression="user(Vijay)"/>
| </swimlane>
| <swimlane name="SBUHead">
| <assignment expression="user(Aarif)"/>
| </swimlane>
| <swimlane name="FinanceManager">
| <assignment expression="user(Asif)"/>
| </swimlane>
| <!-- end of swimlanes definition -->
| <start-state name="DocumentWorkFlow">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name"/>
| <variable name="Plan Status"/>
| </controller>
| </task>
| <transition name="submit" to="PMAcceptence"></transition>
| </start-state>
| <task-node name="PMAcceptence">
| <task swimlane="ProjectManager">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM"/>
| </controller>
| </task>
| <transition name="Reject" to="PMRejectionReason"></transition>
| <transition name="accept" to="SBUAcceptence"></transition>
| </task-node>
| <task-node name="PMRejectionReason">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| </controller>
| </task>
| <transition name="tr1" to="Stop"></transition>
| </task-node>
| <task-node name="SBUAcceptence">
| <task swimlane="SBUHead">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead"/>
| </controller>
| </task>
| <transition name="Rejected" to="SBURejectionReason"></transition>
| <transition name="Accepted" to="FMAcceptence"></transition>
| </task-node>
| <task-node name="SBURejectionReason">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead" access="read"/>
| </controller>
| </task>
| <transition name="tr1" to="Stop"></transition>
| </task-node>
| <task-node name="FMAcceptence">
| <task swimlane="FinanceManager">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead" access="read"/>
| <variable name="CommentsBy FM"/>
| </controller>
| </task>
| <transition name="approved" to="DocumentApproved"></transition>
| <transition name="denied" to="DocumentRejected"></transition>
| </task-node>
| <task-node name="DocumentApproved">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead" access="read"/>
| <variable name="CommentsBy FM" access="read"/>
| </controller>
| </task>
| <transition name="tr1" to="Stop"></transition>
| </task-node>
| <task-node name="DocumentRejected">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead" access="read"/>
| <variable name="CommentsBy FM" access="read"/>
| </controller>
| </task>
| <transition name="tr1" to="Stop"></transition>
| </task-node>
| <end-state name="Stop"></end-state>
| </process-definition>
|
|
|
| its very urgent for me,
| plse help guys,tell me the solution..
|
| Regards
| Ganesh
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037070#4037070
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4037070
19 years
[JBoss jBPM] - jbpm-liferay integration(in creating time like defintion)
by ganeshbivu
Hi,
I am ganesh here,iam facing with this error entering my xml file in textarea (in definition textarea).Thsi is the error showing:
An error occured while parsing my xml.please check the syntax of my xml.
<?xml version="1.0" encoding="UTF-8"?>
|
| <process-definition
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xsi:noNamespaceSchemaLocation="http://jbpm.org/xsd/jpdl-3.0.xsd"
| name="DocumentWorkFlow">
| <!-- swimlane declarations -->
| <swimlane name="BusinessTeam">
| <assignment expression="user(John)"/>
| <assignment expression="user(Soumitree)"/>
| <assignment expression="user(Tanveer)"/>
| </swimlane>
| <swimlane name="ProjectManager">
| <assignment expression="user(Vijay)"/>
| </swimlane>
| <swimlane name="SBUHead">
| <assignment expression="user(Aarif)"/>
| </swimlane>
| <swimlane name="FinanceManager">
| <assignment expression="user(Asif)"/>
| </swimlane>
| <!-- end of swimlanes definition -->
| <start-state name="DocumentWorkFlow">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name"/>
| <variable name="Plan Status"/>
| </controller>
| </task>
| <transition name="submit" to="PMAcceptence"></transition>
| </start-state>
| <task-node name="PMAcceptence">
| <task swimlane="ProjectManager">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM"/>
| </controller>
| </task>
| <transition name="Reject" to="PMRejectionReason"></transition>
| <transition name="accept" to="SBUAcceptence"></transition>
| </task-node>
| <task-node name="PMRejectionReason">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| </controller>
| </task>
| <transition name="tr1" to="Stop"></transition>
| </task-node>
| <task-node name="SBUAcceptence">
| <task swimlane="SBUHead">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead"/>
| </controller>
| </task>
| <transition name="Rejected" to="SBURejectionReason"></transition>
| <transition name="Accepted" to="FMAcceptence"></transition>
| </task-node>
| <task-node name="SBURejectionReason">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead" access="read"/>
| </controller>
| </task>
| <transition name="tr1" to="Stop"></transition>
| </task-node>
| <task-node name="FMAcceptence">
| <task swimlane="FinanceManager">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead" access="read"/>
| <variable name="CommentsBy FM"/>
| </controller>
| </task>
| <transition name="approved" to="DocumentApproved"></transition>
| <transition name="denied" to="DocumentRejected"></transition>
| </task-node>
| <task-node name="DocumentApproved">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead" access="read"/>
| <variable name="CommentsBy FM" access="read"/>
| </controller>
| </task>
| <transition name="tr1" to="Stop"></transition>
| </task-node>
| <task-node name="DocumentRejected">
| <task swimlane="BusinessTeam">
| <assignment class="com.liferay.jbpm.handler.Identity Assignment Handler">
| </assignment>
| <controller>
| <variable name="Project Name" access="read"/>
| <variable name="Plan Status" access="read"/>
| <variable name="CommentsBy PM" access="read"/>
| <variable name="CommentsBy SBUHead" access="read"/>
| <variable name="CommentsBy FM" access="read"/>
| </controller>
| </task>
| <transition name="tr1" to="Stop"></transition>
| </task-node>
| <end-state name="Stop"></end-state>
| </process-definition>
|
|
|
| its very urgent for me,
| plse help guys,tell me the solution..
|
| Regards
| Ganesh
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037069#4037069
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4037069
19 years
[JBoss jBPM] - Re: own beans
by fuligj
server log: at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
| er.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
| java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy30.start(Unknown Source)
| at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:46
| 6)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
| er.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
| or.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
| BeanOperationInterceptor.java:142)
| at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor
| .java:97)
| at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(Intercepto
| rServiceMBeanSupport.java:238)
| at org.jboss.ws.server.WebServiceDeployer.start(WebServiceDeployer.java:
| 117)
| at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.
| start(SubDeployerInterceptorSupport.java:188)
| at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterce
| ptor.java:95)
| 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:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy31.start(Unknown Source)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
| at sun.reflect.GeneratedMethodAccessor55.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
| er.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
| or.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
| BeanOperationInterceptor.java:142)
| 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:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy8.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen
| tScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS
| canner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.
| doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(A
| bstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanS
| upport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMB
| eanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
| er.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
| java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl
| ler.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
| er.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
| java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
| at java.lang.reflect.Method.invoke(Unknown Source)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
| er.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
| or.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
| BeanOperationInterceptor.java:142)
| 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:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:464)
| at java.lang.Thread.run(Unknown Source)
| 15:27:25,354 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../dep
| loy/jmx-console.war/
| 15:27:25,525 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
|
| --- Packages waiting for a deployer ---
| org.jboss.deployment.DeploymentInfo@2b15dd8a { url=file:/C:/Program Files/Java/j
| bpm-jpdl-3.2.GA/server/server/jbpm/deploy/jbpm.mail.templates.xml }
| deployer: null
| status: null
| state: INIT_WAITING_DEPLOYER
| watch: file:/C:/Program Files/Java/jbpm-jpdl-3.2.GA/server/server/jbpm/deploy/
| jbpm.mail.templates.xml
| altDD: null
| lastDeployed: 1176470845525
| lastModified: 1176470845525
| mbeans:
|
| --- Incompletely deployed packages ---
| org.jboss.deployment.DeploymentInfo@96e1ca49 { url=file:/C:/Program Files/Java/j
| bpm-jpdl-3.2.GA/server/server/jbpm/deploy/jbpm-console.war }
| deployer: MBeanProxyExt[jboss.web:service=WebServer]
| status: Deployment FAILED reason: URL file:/C:/Program Files/Java/jbpm-jpdl-3.
| 2.GA/server/server/jbpm/tmp/deploy/tmp46290jbpm-console-exp.war/ deployment fail
| ed
| state: FAILED
| watch: file:/C:/Program Files/Java/jbpm-jpdl-3.2.GA/server/server/jbpm/deploy/
| jbpm-console.war
| altDD: null
| lastDeployed: 1176470840604
| lastModified: 1176470840557
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@2b15dd8a { url=file:/C:/Program Files/Java/j
| bpm-jpdl-3.2.GA/server/server/jbpm/deploy/jbpm.mail.templates.xml }
| deployer: null
| status: null
| state: INIT_WAITING_DEPLOYER
| watch: file:/C:/Program Files/Java/jbpm-jpdl-3.2.GA/server/server/jbpm/deploy/
| jbpm.mail.templates.xml
| altDD: null
| lastDeployed: 1176470845525
| lastModified: 1176470845525
| mbeans:
|
| --- MBeans waiting for other MBeans ---
| ObjectName: jboss.ejb:service=EJBTimerService,persistencePolicy=database
| State: CONFIGURED
| I Depend On:
| jboss.jca:service=DataSourceBinding,name=DefaultDS
|
| ObjectName: jboss.mq:service=InvocationLayer,type=HTTP
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=Invoker
| jboss.web:service=WebServer
|
| ObjectName: jboss:service=KeyGeneratorFactory,type=HiLo
| State: CONFIGURED
| I Depend On:
| jboss:service=TransactionManager
| jboss.jca:service=DataSourceBinding,name=DefaultDS
|
| ObjectName: jboss.mq:service=StateManager
| State: CONFIGURED
| I Depend On:
| jboss.jca:service=DataSourceBinding,name=DefaultDS
| Depends On Me:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq:service=DestinationManager
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=MessageCache
| jboss.mq:service=PersistenceManager
| jboss.mq:service=StateManager
| jboss.mq:service=ThreadPool
| jboss:service=Naming
| Depends On Me:
| jboss.mq.destination:service=Queue,name=JbpmCommandQueue
| jboss.mq.destination:service=Queue,name=JbpmJobQueue
| jboss.mq:service=SecurityManager
| jboss.mq.destination:service=Queue,name=DLQ
|
| ObjectName: jboss.mq:service=PersistenceManager
| State: CONFIGURED
| I Depend On:
| jboss.jca:service=DataSourceBinding,name=DefaultDS
| Depends On Me:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq.destination:service=Queue,name=JbpmCommandQueue
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq.destination:service=Queue,name=JbpmJobQueue
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq:service=Invoker
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=TracingInterceptor
| jboss:service=Naming
| Depends On Me:
| jboss.mq:service=InvocationLayer,type=HTTP
| jboss.mq:service=InvocationLayer,type=JVM
| jboss.mq:service=InvocationLayer,type=UIL2
|
| ObjectName: jboss.mq:service=TracingInterceptor
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=SecurityManager
| Depends On Me:
| jboss.mq:service=Invoker
|
| ObjectName: jboss.mq:service=SecurityManager
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
| Depends On Me:
| jboss.mq:service=TracingInterceptor
| jboss.mq.destination:service=Queue,name=DLQ
|
| ObjectName: jboss.mq.destination:service=Queue,name=DLQ
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
| jboss.mq:service=SecurityManager
|
| ObjectName: jboss.mq:service=InvocationLayer,type=JVM
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=Invoker
|
| ObjectName: jboss.mq:service=InvocationLayer,type=UIL2
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=Invoker
|
| ObjectName: jboss.web.deployment:war=jbpm-console.war,id=-1763587511
| State: FAILED
| Reason: org.jboss.deployment.DeploymentException: URL file:/C:/Program Files/J
| ava/jbpm-jpdl-3.2.GA/server/server/jbpm/tmp/deploy/tmp46290jbpm-console-exp.war/
| deployment failed
|
| --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
| ObjectName: jboss.jca:service=DataSourceBinding,name=DefaultDS
| State: NOTYETINSTALLED
| Depends On Me:
| jboss.ejb:service=EJBTimerService,persistencePolicy=database
| jboss:service=KeyGeneratorFactory,type=HiLo
| jboss.mq:service=StateManager
| jboss.mq:service=PersistenceManager
|
| ObjectName: jboss.web.deployment:war=jbpm-console.war,id=-1763587511
| State: FAILED
| Reason: org.jboss.deployment.DeploymentException: URL file:/C:/Program Files/J
| ava/jbpm-jpdl-3.2.GA/server/server/jbpm/tmp/deploy/tmp46290jbpm-console-exp.war/
| deployment failed
|
|
| 15:27:25,619 INFO [Http11BaseProtocol] Starting Coyote HTTP/1.1 on http-0.0.0.0
| -8080
| 15:27:25,775 INFO [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009
| 15:27:25,775 INFO [JkMain] Jk running ID=0 time=0/62 config=null
| 15:27:25,791 INFO [Server] JBoss (MX MicroKernel) [4.0.4.GA (build: CVSTag=JBos
| s_4_0_4_GA date=200605151000)] Started in 19s:938ms
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037066#4037066
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4037066
19 years