[JBoss Seam] - TransactionException: Could not register synchronization bug
by sjmenden
I have inexplicably ran into this exception:
java.lang.RuntimeException: org.hibernate.TransactionException: Could not register synchronization
| 16:20:46,188 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces Servlet threw exception
| javax.faces.FacesException: Error calling action method of component with id _id0:_id57_0:_id61
| at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
| at javax.faces.component.UICommand.broadcast(UICommand.java:106)
| at javax.faces.component.UIData.broadcast(UIData.java:338)
| at javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:90)
| at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:164)
| at org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:316)
| at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
| at javax.faces.webapp.FacesServlet.service(FacesServlet.java:106)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: javax.faces.el.EvaluationException: Exception while invoking expression #{groupViewer.view}
| at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:153)
| at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:63)
| ... 25 more
| Caused by: java.lang.RuntimeException: org.hibernate.TransactionException: Could not register synchronization
| at org.jboss.ejb3.stateful.StatefulBeanContext.remove(StatefulBeanContext.java:273)
| at org.jboss.ejb3.AbstractPool.remove(AbstractPool.java:171)
| at org.jboss.ejb3.cache.simple.SimpleStatefulCache.remove(SimpleStatefulCache.java:299)
| at org.jboss.ejb3.stateful.StatefulInstanceInterceptor.invoke(StatefulInstanceInterceptor.java:89)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:78)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:47)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.stateful.StatefulContainer.localInvoke(StatefulContainer.java:188)
| at org.jboss.ejb3.stateful.StatefulLocalProxy.invoke(StatefulLocalProxy.java:98)
| at $Proxy210.view(Unknown Source)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:129)
| ... 26 more
| Caused by: org.hibernate.TransactionException: Could not register synchronization
| at org.hibernate.transaction.CMTTransaction.registerSynchronization(CMTTransaction.java:159)
| at org.hibernate.ejb.EntityManagerImpl.close(EntityManagerImpl.java:59)
| at org.jboss.ejb3.stateful.StatefulBeanContext.closeExtendedPCs(StatefulBeanContext.java:284)
| at org.jboss.ejb3.stateful.StatefulBeanContext.remove(StatefulBeanContext.java:268)
| ... 44 more
| Caused by: javax.transaction.RollbackException: Already marked for rollback TransactionImpl:XidImpl[FormatId=257, GlobalId=localhost/44, BranchQual=, localId=44]
| at org.jboss.tm.TransactionImpl.registerSynchronization(TransactionImpl.java:635)
| at org.hibernate.transaction.CMTTransaction.registerSynchronization(CMTTransaction.java:156)
| ... 47 more
|
I was on a page viewing my groups trying to click on a group which the pages.xml intercepts and calls viewGroup.view.
pages.xml:
| <pages>
| <page view-id="/viewGroup.jsp" action="#{groupViewer.view}" />
| </pages>
|
GroupViewerBean.java
| @Name("groupViewer")
| @Stateful
| @Scope(ScopeType.SESSION)
| public class GroupViewerBean implements GroupViewer {
|
| @RequestParameter
| private Long groupId;
|
| private Long id;
|
| @Logger
| private Log log;
|
| @PersistenceContext(type=EXTENDED)
| private EntityManager em;
|
| @Out(required=true)
| Group group;
|
| public String view() {
| Map<String, Object> parameters = new HashMap<String, Object>();
| Query query = em.createQuery("from Group where group.id = :id");
| parameters.put("id", groupId);
|
| for (Entry <String, Object> param : parameters.entrySet()) {
| query.setParameter( param.getKey(), param.getValue() );
| }
| group = (Group) query.getSingleResult();
| return "/viewGroup.seam";
| }
|
| @Destroy @Remove
| public void destroy() {}
| }
|
Any ideas what could cause this Exception? I have other Stateful beans I'm using no problem.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968213#3968213
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968213
19 years, 7 months
[Installation, Configuration & Deployment] - Jboss start up problem
by anionline2
Hi, i'am a new user on this forum.
I have use a Jboss 3.2.7-3.2.8 version of jboss as, and I install on it a libraries of ADF Framework of Oracle.
Normally i don't have a problem, but recently in a server Red Hat ES 4, the jboss initiation don't work.
Apparently, this trouble is with xmlparserv2.jar library from oracle, if i remove this from /jboss/server/default/lib, jboss start normally, but when i put this library again, jboss don't start normallly. I look for this problem over the internet, but i don't found any solution.
Sorry for long post and my bad english.
Please, help me!!
This is the stack of a normally start and later stack with not working start:
| =========================================================================
|
| JBoss Bootstrap Environment
|
| JBOSS_HOME: /home/jboss
|
| JAVA: /usr/local/java/bin/java
|
| JAVA_OPTS: -server -Dprogram.name=run.sh
|
| CLASSPATH: /home/jboss/bin/run.jar:/usr/local/java/lib/tools.jar
|
| =========================================================================
|
| 17:09:00,082 INFO [Server] Starting JBoss (MX MicroKernel)...
| 17:09:00,083 INFO [Server] Release ID: JBoss [WonderLand] 3.2.8.SP1 (build: CVSTag=JBoss_3_2_8_SP1 date=200603031235)
| 17:09:00,085 INFO [Server] Home Dir: /home/jboss
| 17:09:00,085 INFO [Server] Home URL: file:/home/jboss/
| 17:09:00,086 INFO [Server] Patch URL: null
| 17:09:00,086 INFO [Server] Server Name: default
| 17:09:00,086 INFO [Server] Server Home Dir: /home/jboss/server/default
| 17:09:00,087 INFO [Server] Server Home URL: file:/home/jboss/server/default/
| 17:09:00,087 INFO [Server] Server Temp Dir: /home/jboss/server/default/tmp
| 17:09:00,088 INFO [Server] Root Deployment Filename: jboss-service.xml
| 17:09:00,431 INFO [ServerInfo] Java version: 1.4.2_12,Sun Microsystems Inc.
| 17:09:00,431 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.4.2_12-b03,Sun Microsystems Inc.
| 17:09:00,432 INFO [ServerInfo] OS-System: Linux 2.6.9-5.ELsmp,i386
| 17:09:00,762 INFO [Server] Core system initialized
| 17:09:04,760 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
| 17:09:05,071 INFO [WebService] Using RMI server codebase: http://oracleserver.ecipsa.com:8083/
| 17:09:05,262 INFO [NamingService] JNDI bootstrap JNP=/0.0.0.0:1099, RMI=/0.0.0.0:1098, backlog=50, no client SocketFactory, Server SocketFactory=class org.jboss.net.sockets.DefaultSocketFactory
| 17:09:08,531 INFO [Embedded] Catalina naming disabled
| 17:09:09,556 INFO [Http11Protocol] Inicializando Coyote HTTP/1.1 en puerto http-0.0.0.0-8100
| 17:09:09,600 INFO [Catalina] Initialization processed in 802 ms
| 17:09:09,601 INFO [StandardService] Starting service jboss.web
| 17:09:09,607 INFO [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.0.30
| 17:09:09,627 INFO [StandardHost] XML validation disabled
| 17:09:09,650 INFO [Catalina] Server startup in 50 ms
| 17:09:09,732 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=file:/home/jboss/server/default/deploy/http-invoker.sar/invoker.war/
| 17:09:11,056 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=file:/home/jboss/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/
| 17:09:12,141 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=file:/home/jboss/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/17:09:12,922 INFO [RARMetaData] Required license terms present. See deployment descriptor.
| 17:09:12,989 INFO [RARMetaData] Loading JBoss Resource Adapter for JDBC 2 XA drivers
| 17:09:12,990 INFO [RARMetaData] Required license terms present. See deployment descriptor.
| 17:09:13,051 INFO [RARMetaData] Required license terms present. See deployment descriptor.
| 17:09:17,194 INFO [MailService] Mail Service bound to java:/Mail
| 17:09:17,587 INFO [DefaultDS] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=LocalTxCM,name=DefaultDS to JNDI name 'java:/DefaultDS'
| 17:09:17,892 INFO [A] Bound to JNDI name: queue/A
| 17:09:17,895 INFO [B] Bound to JNDI name: queue/B
| 17:09:17,897 INFO [C] Bound to JNDI name: queue/C
| 17:09:17,900 INFO [D] Bound to JNDI name: queue/D
| 17:09:17,902 INFO [ex] Bound to JNDI name: queue/ex
| 17:09:17,935 INFO [testTopic] Bound to JNDI name: topic/testTopic
| 17:09:17,937 INFO [securedTopic] Bound to JNDI name: topic/securedTopic
| 17:09:17,939 INFO [testDurableTopic] Bound to JNDI name: topic/testDurableTopic
| 17:09:17,943 INFO [testQueue] Bound to JNDI name: queue/testQueue
| 17:09:18,009 INFO [UILServerILService] JBossMQ UIL service available at : /0.0.0.0:8093
| 17:09:18,081 INFO [DLQ] Bound to JNDI name: queue/DLQ
| 17:09:18,118 INFO [JmsXA] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=TxCM,name=JmsXA to JNDI name 'java:/JmsXA'
| 17:09:18,123 INFO [kerp22DS] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=LocalTxCM,name=kerp22DS to JNDI name 'java:/kerp22DS'
| 17:09:18,128 INFO [kerp99DS] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:service=LocalTxCM,name=kerp99DS to JNDI name 'java:/kerp99DS'
| 17:09:18,317 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=file:/home/jboss/server/default/deploy/jmx-console.war/
| 17:09:18,538 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=file:/home/jboss/server/default/deploy/management/web-console.war/
| 17:09:19,651 INFO [EARDeployer] Init J2EE application: file:/home/jboss/server/default/deploy/bc4j.ear
| 17:09:20,380 INFO [TomcatDeployer] deploy, ctxPath=/webapp, warUrl=file:/home/jboss/server/default/tmp/deploy/tmp3289bc4j.ear-contents/webapp.war/
| 17:09:20,890 INFO [JBossCacheManager] init(): replicationGranularity_ is 0 and invaldateSessionPolicy is 2
| 17:09:20,896 ERROR [JBossCacheManager] JBossCacheService to Tomcat clustering not found
| 17:09:20,897 ERROR [TomcatDeployer] Failed to setup clustering, clustering disabled
| 17:09:20,928 INFO [EARDeployer] Started J2EE application: file:/home/jboss/server/default/deploy/bc4j.ear
| 17:09:21,059 INFO [Http11Protocol] Arrancando Coyote HTTP/1.1 en puerto http-0.0.0.0-8100
| 17:09:21,254 INFO [ChannelSocket] JK2: ajp13 listening on /0.0.0.0:8009
| 17:09:21,259 INFO [JkMain] Jk running ID=0 time=0/32 config=null
| 17:09:21,327 INFO [Server] JBoss (MX MicroKernel) [3.2.8.SP1 (build: CVSTag=JBoss_3_2_8_SP1 date=200603031235)] Started in 21s:236ms
|
|
and this is a not working start:
=========================================================================
|
| JBoss Bootstrap Environment
|
| JBOSS_HOME: /home/jboss
|
| JAVA: /usr/local/java/bin/java
|
| JAVA_OPTS: -server -Dprogram.name=run.sh
|
| CLASSPATH: /home/jboss/bin/run.jar:/usr/local/java/lib/tools.jar
|
| =========================================================================
|
| 17:10:54,651 INFO [Server] Starting JBoss (MX MicroKernel)...
| 17:10:54,653 INFO [Server] Release ID: JBoss [WonderLand] 3.2.8.SP1 (build: CVSTag=JBoss_3_2_8_SP1 date=200603031235)
| 17:10:54,655 INFO [Server] Home Dir: /home/jboss
| 17:10:54,655 INFO [Server] Home URL: file:/home/jboss/
| 17:10:54,656 INFO [Server] Patch URL: null
| 17:10:54,656 INFO [Server] Server Name: default
| 17:10:54,656 INFO [Server] Server Home Dir: /home/jboss/server/default
| 17:10:54,657 INFO [Server] Server Home URL: file:/home/jboss/server/default/
| 17:10:54,657 INFO [Server] Server Temp Dir: /home/jboss/server/default/tmp
| 17:10:54,658 INFO [Server] Root Deployment Filename: jboss-service.xml
| 17:10:55,001 INFO [ServerInfo] Java version: 1.4.2_12,Sun Microsystems Inc.
| 17:10:55,001 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.4.2_12-b03,Sun Microsystems Inc.
| 17:10:55,002 INFO [ServerInfo] OS-System: Linux 2.6.9-5.ELsmp,i386
| 17:10:55,350 INFO [Server] Core system initialized
| 17:10:59,827 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
| 17:10:59,970 INFO [WebService] Using RMI server codebase: http://oracleserver.ecipsa.com:8083/
| 17:11:00,354 INFO [NamingService] JNDI bootstrap JNP=/0.0.0.0:1099, RMI=/0.0.0.0:1098, backlog=50, no client SocketFactory, Server SocketFactory=class org.jboss.net.sockets.DefaultSocketFactory
| 17:11:03,931 INFO [Embedded] Catalina naming disabled
| 17:11:04,880 INFO [Http11Protocol] Inicializando Coyote HTTP/1.1 en puerto http-0.0.0.0-8100
| 17:11:04,961 INFO [Catalina] Initialization processed in 961 ms
| 17:11:04,962 INFO [StandardService] Starting service jboss.web
| 17:11:04,968 INFO [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.0.30
| 17:11:05,029 INFO [StandardHost] XML validation disabled
| 17:11:05,056 INFO [Catalina] Server startup in 95 ms
| 17:11:05,191 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=file:/home/jboss/server/default/deploy/http-invoker.sar/invoker.war/
| 17:11:06,710 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=file:/home/jboss/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/
| 17:11:07,027 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=file:/home/jboss/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/17:11:07,856 INFO [RARMetaData] Required license terms present. See deployment descriptor.
| 17:11:07,915 INFO [RARMetaData] Loading JBoss Resource Adapter for JDBC 2 XA drivers
| 17:11:07,916 INFO [RARMetaData] Required license terms present. See deployment descriptor.
| 17:11:07,978 INFO [RARMetaData] Required license terms present. See deployment descriptor.
| 17:11:08,079 INFO [STDOUT]
| XML-22101: (Fatal Error) DOMSource node as this type not supported.
| 17:11:08,083 ERROR [MainDeployer] Could not initialise deployment: file:/home/jboss/server/default/deploy/hsqldb-ds.xml
| org.jboss.deployment.DeploymentException: Problem with xsl transformation; - nested throwable: (javax.xml.transform.TransformerException: XML-22101: (Fatal Error) DOMSource node as this type not supported.)
| at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:228)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:708)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:643)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy7.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:316)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:490)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:213)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:286)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:404)
| at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:263)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:600)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:462)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:353)
| at org.jboss.Main.boot(Main.java:201)
| at org.jboss.Main$1.run(Main.java:459)
| at java.lang.Thread.run(Thread.java:534)
| Caused by: javax.xml.transform.TransformerException: XML-22101: (Fatal Error) DOMSource node as this type not supported.
| at oracle.xml.jaxp.JXTransformer.reportException(JXTransformer.java:739)
| at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:200)
| at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:216)
| ... 66 more
| 17:11:08,096 INFO [STDOUT]
| XML-22101: (Fatal Error) DOMSource node as this type not supported.
| 17:11:08,097 ERROR [MainDeployer] Could not initialise deployment: file:/home/jboss/server/default/deploy/jms/jms-ds.xml
| org.jboss.deployment.DeploymentException: Problem with xsl transformation; - nested throwable: (javax.xml.transform.TransformerException: XML-22101: (Fatal Error) DOMSource node as this type not supported.)
| at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:228)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:708)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:643)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy7.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:316)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:490)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:213)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:286)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:404)
| at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:263)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:600)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:462)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:353)
| at org.jboss.Main.boot(Main.java:201)
| at org.jboss.Main$1.run(Main.java:459)
| at java.lang.Thread.run(Thread.java:534)
| Caused by: javax.xml.transform.TransformerException: XML-22101: (Fatal Error) DOMSource node as this type not supported.
| at oracle.xml.jaxp.JXTransformer.reportException(JXTransformer.java:739)
| at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:200)
| at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:216)
| ... 66 more
| 17:11:08,112 INFO [STDOUT]
| XML-22101: (Fatal Error) DOMSource node as this type not supported.
| 17:11:08,113 ERROR [MainDeployer] Could not initialise deployment: file:/home/jboss/server/default/deploy/kerp22-ds.xml
| org.jboss.deployment.DeploymentException: Problem with xsl transformation; - nested throwable: (javax.xml.transform.TransformerException: XML-22101: (Fatal Error) DOMSource node as this type not supported.)
| at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:228)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:708)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:643)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy7.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:316)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:490)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:213)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:286)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:404)
| at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:263)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:600)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:462)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:353)
| at org.jboss.Main.boot(Main.java:201)
| at org.jboss.Main$1.run(Main.java:459)
| at java.lang.Thread.run(Thread.java:534)
| Caused by: javax.xml.transform.TransformerException: XML-22101: (Fatal Error) DOMSource node as this type not supported.
| at oracle.xml.jaxp.JXTransformer.reportException(JXTransformer.java:739)
| at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:200)
| at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:216)
| ... 66 more
| 17:11:08,128 INFO [STDOUT]
| XML-22101: (Fatal Error) DOMSource node as this type not supported.
| 17:11:08,128 ERROR [MainDeployer] Could not initialise deployment: file:/home/jboss/server/default/deploy/kerp99-ds.xml
| org.jboss.deployment.DeploymentException: Problem with xsl transformation; - nested throwable: (javax.xml.transform.TransformerException: XML-22101: (Fatal Error) DOMSource node as this type not supported.)
| at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:228)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:708)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:643)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy7.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:316)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:490)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:213)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:286)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:404)
| at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:263)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:600)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:324)
| at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:462)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:353)
| at org.jboss.Main.boot(Main.java:201)
| at org.jboss.Main$1.run(Main.java:459)
| at java.lang.Thread.run(Thread.java:534)
| Caused by: javax.xml.transform.TransformerException: XML-22101: (Fatal Error) DOMSource node as this type not supported.
| at oracle.xml.jaxp.JXTransformer.reportException(JXTransformer.java:739)
| at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:200)
| at org.jboss.deployment.XSLSubDeployer.init(XSLSubDeployer.java:216)
| ... 66 more
| 17:11:09,908 INFO [MailService] Mail Service bound to java:/Mail
| 17:11:10,342 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=file:/home/jboss/server/default/deploy/jmx-console.war/
| 17:11:10,481 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=file:/home/jboss/server/default/deploy/management/web-console.war/
| 17:11:11,665 INFO [EARDeployer] Init J2EE application: file:/home/jboss/server/default/deploy/bc4j.ear
| 17:11:12,371 INFO [TomcatDeployer] deploy, ctxPath=/webapp, warUrl=file:/home/jboss/server/default/tmp/deploy/tmp10201bc4j.ear-contents/webapp.war/
| 17:11:12,989 INFO [JBossCacheManager] init(): replicationGranularity_ is 0 and invaldateSessionPolicy is 2
| 17:11:12,995 ERROR [JBossCacheManager] JBossCacheService to Tomcat clustering not found
| 17:11:12,996 ERROR [TomcatDeployer] Failed to setup clustering, clustering disabled
| 17:11:13,039 INFO [EARDeployer] Started J2EE application: file:/home/jboss/server/default/deploy/bc4j.ear
| 17:11:13,047 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
|
| --- Incompletely deployed packages ---
| org.jboss.deployment.DeploymentInfo@19ba46f5 { url=file:/home/jboss/server/default/deploy/hsqldb-ds.xml }
| deployer: org.jboss.deployment.XSLSubDeployer@1827d1
| status: null
| state: FAILED
| watch: file:/home/jboss/server/default/deploy/hsqldb-ds.xml
| lastDeployed: 1156882268082
| lastModified: 1156882268000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@e65512d6 { url=file:/home/jboss/server/default/deploy/jms/jms-ds.xml }
| deployer: org.jboss.deployment.XSLSubDeployer@1827d1
| status: null
| state: FAILED
| watch: file:/home/jboss/server/default/deploy/jms/jms-ds.xml
| lastDeployed: 1156882268097
| lastModified: 1156882268000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@7000ae81 { url=file:/home/jboss/server/default/deploy/kerp22-ds.xml }
| deployer: org.jboss.deployment.XSLSubDeployer@1827d1
| status: null
| state: FAILED
| watch: file:/home/jboss/server/default/deploy/kerp22-ds.xml
| lastDeployed: 1156882268113
| lastModified: 1156882268000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@5507f1a1 { url=file:/home/jboss/server/default/deploy/kerp99-ds.xml }
| deployer: org.jboss.deployment.XSLSubDeployer@1827d1
| status: null
| state: FAILED
| watch: file:/home/jboss/server/default/deploy/kerp99-ds.xml
| lastDeployed: 1156882268128
| lastModified: 1156882268000
| mbeans:
|
| --- MBeans waiting for other MBeans ---
| ObjectName: jboss.mq:service=InvocationLayer,type=HTTP
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=Invoker
| jboss.web:service=WebServer
|
| ObjectName: jboss.mq:service=StateManager
| State: CONFIGURED
| I Depend On:
| jboss.jca:service=LocalTxCM,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=Topic,name=testTopic
| jboss.mq.destination:service=Topic,name=securedTopic
| jboss.mq.destination:service=Topic,name=testDurableTopic
| jboss.mq.destination:service=Queue,name=testQueue
| jboss.mq.destination:service=Queue,name=A
| jboss.mq.destination:service=Queue,name=B
| jboss.mq.destination:service=Queue,name=C
| jboss.mq.destination:service=Queue,name=D
| jboss.mq.destination:service=Queue,name=ex
| jboss.mq:service=SecurityManager
| jboss.mq.destination:service=Queue,name=DLQ
|
| ObjectName: jboss.mq:service=PersistenceManager
| State: CONFIGURED
| I Depend On:
| jboss.jca:service=LocalTxCM,name=DefaultDS
| Depends On Me:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq.destination:service=Topic,name=testTopic
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
| jboss.mq:service=SecurityManager
|
| ObjectName: jboss.mq.destination:service=Topic,name=securedTopic
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
| jboss.mq:service=SecurityManager
|
| ObjectName: jboss.mq.destination:service=Topic,name=testDurableTopic
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
| jboss.mq:service=SecurityManager
|
| ObjectName: jboss.mq.destination:service=Queue,name=testQueue
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
| jboss.mq:service=SecurityManager
|
| ObjectName: jboss.mq.destination:service=Queue,name=A
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq.destination:service=Queue,name=B
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq.destination:service=Queue,name=C
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq.destination:service=Queue,name=D
| State: CONFIGURED
| I Depend On:
| jboss.mq:service=DestinationManager
|
| ObjectName: jboss.mq.destination:service=Queue,name=ex
| 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.destination:service=Topic,name=testTopic
| jboss.mq.destination:service=Topic,name=securedTopic
| jboss.mq.destination:service=Topic,name=testDurableTopic
| jboss.mq.destination:service=Queue,name=testQueue
| 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
|
| --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
| ObjectName: jboss.jca:service=LocalTxCM,name=DefaultDS
| State: NOTYETINSTALLED
| Depends On Me:
| jboss.mq:service=StateManager
| jboss.mq:service=PersistenceManager
|
|
| 17:11:13,331 INFO [Http11Protocol] Arrancando Coyote HTTP/1.1 en puerto http-0.0.0.0-8100
| 17:11:13,499 INFO [ChannelSocket] JK2: ajp13 listening on /0.0.0.0:8009
| 17:11:13,504 INFO [JkMain] Jk running ID=0 time=0/33 config=null
| 17:11:13,515 INFO [Server] JBoss (MX MicroKernel) [3.2.8.SP1 (build: CVSTag=JBoss_3_2_8_SP1 date=200603031235)] Started in 18s:853ms
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968212#3968212
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968212
19 years, 7 months
[JBoss Seam] - Examples - booking example - NamingException: Local server i
by Cvirko
I am getting error while running booking example in Tomcat 5.5.17. Error is listed below. Any ideas?
Tomas
org.jboss.seam.InstantiationException: Could not instantiate Seam component: register
at org.jboss.seam.Component.newInstance(Component.java:735)
at org.jboss.seam.Component.newInstance(Component.java:1308)
at org.jboss.seam.Component.getInstance(Component.java:1263)
at org.jboss.seam.Component.getInstance(Component.java:1246)
at org.jboss.seam.jsf.SeamVariableResolver.resolveVariable(SeamVariableResolver.java:44)
at org.apache.myfaces.config.LastVariableResolverInChain.resolveVariable(LastVariableResolverInChain.java:42)
at com.sun.facelets.el.LegacyELContext$LegacyELResolver.getValue(LegacyELContext.java:134)
...
Caused by: javax.naming.NamingException: Local server is not initialized
at org.jnp.interfaces.LocalOnlyContextFactory.getInitialContext(LocalOnlyContextFactory.java:45)
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
at javax.naming.InitialContext.init(InitialContext.java:223)
at javax.naming.InitialContext.(InitialContext.java:197)
at org.jboss.seam.util.Naming.getInitialContext(Naming.java:26)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968211#3968211
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968211
19 years, 7 months
[JBoss Seam] - Where are my conversations?
by Andre1001
I tryed to show conversationList on my sreens but it didn't work. Seems there is nothing in conversationList, in spite of Seam Debug show me several conversations.
JSP file
<h1><h:outputText rendered="#{not empty conversationList}" value="Workspaces with conversations"/></h1>
| <h1><h:outputText rendered="#{empty conversationList}" value="Workspaces wihout conversations"/></h1>
| <h:dataTable value="#{conversationList}" var="entry" rendered="#(empty conversationList}">
| <h:column>
| <f:facet name="header">Workspace</f:facet>
| <h:commandLink action="#{entry.select}" value="#{entry.description}" />
| <h:outputText value="[current]" rendered="#{entry.current}" />
| </h:column>
| <h:column>
| <f:facet name="header">Activity</f:facet>
| <h:outputText value="#{entry.startDatetime}">
| <f:convertDateTime type="time" pattern="hh:mm a" />
| </h:outputText>
| <h:outputText value=" - " />
| <h:outputText value="#{entry.lastDatetime}">
| <f:convertDateTime type="time" pattern="hh:mm a" />
| </h:outputText>
| </h:column>
| <h:column>
| <f:facet name="header">Action</f:facet>
| <h:commandButton action="#{entry.select}" value="#{msg.Switch}" />
| <h:commandButton action="#{entry.destroy}" value="#{msg.Destroy}" />
| </h:column>
| </h:dataTable>
|
|
I've got this on my server.log file:
2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.Component] instantiating Seam component: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.contexts.Contexts] found in page context: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.contexts.Contexts] found in page context: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.contexts.Contexts] found in page context: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.contexts.Contexts] found in page context: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.contexts.Contexts] found in page context: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.contexts.Contexts] found in page context: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.contexts.Contexts] found in page context: conversationList
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-08-29 16:37:13,069 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
|
Something wrong?
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968205#3968205
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968205
19 years, 7 months