3 Replies Latest reply on Jul 28, 2011 6:20 PM by chaitanya1987

    Deploying jBPM 5.1 on jBoss 6

    chaitanya1987

      Hi,

       

      I was able to deploy jbpm 5.1 on jboss 5.1 with mysql database after modifying hibernate.cfg.xml, testDS1-ds.xml, persistence.xml and Human Task jars - persistence.xml.

       

      I use the same setup of above files and after making some required changes to build, I am facing deployment errors for drools-guvnor.war.

       

      In build.xml Instead of using the target 'install.guvnor.into.jboss.5' to deploy guvnor into jboss 6 i use

       

        <target name="install.guvnor.into.jboss.other">

          <copy file="${install.home}/lib/guvnor-distribution-wars-${drools.guvnor.version}-jboss-as-5.1.war"

                tofile="${jboss.server.deploy.dir}/drools-guvnor.war"

                overwrite="true" />

        </target>

       

      I have commented the execution of:

      install.guvnor.into.jboss.5

       

      Initially had tried executing both the task for installing guvnor into jboss 6 but later resorted to the approach mentioned above .

       

      In the jboss deployments viewed from localhost:8080 browser i can see gwt-server-console.war, client console.war to be up but not drools-guvnor.war.

       

      I see the exception :

       

       

       

        Deployment "vfs:///C:/jboss-6.0.0.Final/server/default/deploy/drools-guvnor.war" is in error due to the following reason(s):

        java.lan  Deployment "jboss.web.deployment:war=/gwt-console-server" is in error due to the following reason(s): org.jboss.deployers.spi.Deploym

              at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1228) [:2.2.0.GA]

              at org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:905) [:2.2.0.GA]

              at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.checkComplete(MainDeployerPlugin.java:87) [:6.0.0.Final]

              at org.jboss.profileservice.deployment.ProfileDeployerPluginRegistry.checkAllComplete(ProfileDeployerPluginRegistry.java:107)

                          [        at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:135) [ 

                          at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:

              at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:

                          at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417)

                          [jboss-bootstrap-impl-base.        at java.lang.Thread.run(Thread.java:662) [:1.6.0_24]

       

       

      Has anyone faced similar issue? How did you resolve it?

        • 1. Re: Deploying jBPM 5.1 on jBoss 6
          marco.rietveld

          Hi Chaitanya,

           

          The log above seems to imply that drools-guvnor.war is missing a dependency.

           

          I'm actually curious about your modifications to the persistence.xml, hibernate xml config and datasource files: would you mind posting those?

           

          As for the bug, was there anything else in the log? If possible, try to up the detail in your server log.

           

          Thanks,

          Marco

          • 2. Re: Deploying jBPM 5.1 on jBoss 6
            chaitanya1987

            Hello Marcos,

            I am posting the modified files here . Although I doubt that modified files are causing the issue since I am was able to get jbpm 5.1 working with jboss 5.1 with same set of modified files.

             

            testDS-ds.xml :

             

            <datasources>

            <local-tx-datasource>

                <jndi-name>jdbc/jbpmDatasource</jndi-name>

                <connection-url>jdbc:mysql://localhost:3306/jbpm_demo?useUnicode=true&amp;characterEncoding=UTF-8</connection-url>

                <!--connection-url>jdbc:h2:mem:mydb</connection-url-->

                <driver-class>com.mysql.jdbc.Driver</driver-class>

                <user-name>root</user-name>

                <password></password>

              </local-tx-datasource>

            </datasources>

             

            persistence.xml :

             

            <?xml version="1.0" encoding="UTF-8" standalone="yes"?>

            <persistence version="1.0"

                         xsi:schemaLocation="http://java.sun.com/xml/ns/persistence

                                             http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd

                                             http://java.sun.com/xml/ns/persistence/orm

                                             http://java.sun.com/xml/ns/persistence/orm_1_0.xsd"

                         xmlns:orm="http://java.sun.com/xml/ns/persistence/orm"

                         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

                         xmlns="http://java.sun.com/xml/ns/persistence">

             

             

              <persistence-unit name="org.jbpm.persistence.jpa" transaction-type="JTA">

                <provider>org.hibernate.ejb.HibernatePersistence</provider>

                <jta-data-source>java:jdbc/jbpmDatasource</jta-data-source>      

                <mapping-file>META-INF/JBPMorm.xml</mapping-file>

                <class>org.jbpm.persistence.processinstance.ProcessInstanceInfo</class>

                <class>org.drools.persistence.info.SessionInfo</class>

                <class>org.drools.persistence.info.WorkItemInfo</class>

                <properties>

                  <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect"/>        

                  <property name="hibernate.max_fetch_depth" value="3"/>

                  <property name="hibernate.hbm2ddl.auto" value="create" />

                  <property name="hibernate.show_sql" value="false" />

                  <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup" />

                </properties>       

              </persistence-unit>

               

            </persistence>

             

            hibernate.cfg.xml

             

            <?xml version='1.0' encoding='utf-8'?>

            <!DOCTYPE hibernate-configuration PUBLIC

                    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"

                    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

             

             

            <hibernate-configuration>

             

             

              <session-factory>

             

             

                    <!-- Database connection settings -->

                    <property name="connection.driver_class">com.mysql.jdbc.Driver</property>

                    <property name="connection.url">jdbc:mysql://localhost:3306/jbpm_demo?useUnicode=true&amp;characterEncoding=UTF-8</property>

                    <!--property name="connection.url">jdbc:h2:file:/NotBackedUp/data/mydb</property-->

                    <property name="connection.username">root</property>

                    <property name="connection.password"></property>

             

             

                    <!-- JDBC connection pool (use the built-in) -->

                    <property name="connection.pool_size">1</property>

             

             

                    <!-- SQL dialect -->

                    <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>

             

             

                    <!-- Enable Hibernate's automatic session context management -->

                    <property name="current_session_context_class">thread</property>

             

             

                    <!-- Disable the second-level cache  -->

                    <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

             

             

                    <!-- Echo all executed SQL to stdout -->

                    <property name="show_sql">false</property>

             

             

                    <!-- Drop and re-create the database schema on startup? -->

                    <property name="hbm2ddl.auto">create</property>

             

             

                    <mapping resource="AuditLog.hbm.xml"/>

             

             

                </session-factory>

             

             

            </hibernate-configuration>

             

             

             

             

             

            But I came across some other post by multiple people in different places which I felt might be causing the issue:

             

            http://blog.athico.com/2011/05/guvnor-wars-per-application-server.html

             

            I got the guvnor distribution specific to jboss AS 6 and trying to deploy it onto jboss AS 6. When i was trying to use jboss 5.1, jbpm downloaded guvnor distribution specific to jboss AS 5.1. I downloaded the war file specific to jboss 6 and modified the build to use the target :

             

            <target name="install.guvnor.into.jboss.other1">

             

            <mkdir dir="${install.home}/target/drools-guvnor"/>

                <unzip src="${install.home}/lib/guvnor-5.2.0.Final-jboss-as-6.0.war" dest="${install.home}/target/drools-guvnor" />

                       <echo message="Removing the unrequired jars from drools-guvnor.war"/>

                <delete>

                  <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="xml-apis-*.jar"/>                    

                            <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="jta-*.jar"/>

                                  <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="slf4j-api-1.6.0.jar"/>

                                  <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="slf4j-log4j12-1.6.0.jar"/>

                                  <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="jsf-api-*.jar"/>

                                  <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="javassist-*.jar"/>           

                </delete>

                <zip basedir="${install.home}/target/drools-guvnor"

                     destfile="${install.home}/target/drools-guvnor.war"/>

                <copy file="${install.home}/target/drools-guvnor.war"

                      tofile="${jboss.server.deploy.dir}/drools-guvnor.war"

                      overwrite="true" />

                <delete dir="${install.home}/target"/>

                   

              </target>

             

            when i try to deploy drools-guvnor.jar

             

            I AM STILL GETTING THE EXCEPTION WITH ABOVE TARGET BUT THE DIFFERENCE IS: WHEN I TRY TO VIEW MY DEPLOYMENTS ON JBOSS AS-6 CONSOLE, I SEE THAT 'DROOL-GUVNOR.WAR' IS DISPLAYED AS UP WHICH WAS UNLIKE EARLIER CASE WHEN I WAS TRYING TO USE JBOSS 5.1 DISTRIBUTION WHERE IT WAS DISPLAYED AS SERVICE IS DOWN.

             

            The exception log for above approach is:

             

            22:08:22,229 INFO  [STDOUT] Registering check-in listener

             

             

            22:08:22,234 INFO  [STDOUT] Check-in listener up

             

             

            22:08:22,278 INFO  [config] Initializing Mojarra 2.0.3 ( b05) for context '/drools-guvnor'

            22:08:22,608 INFO  [TransientRepository] Session closed

            22:08:46,615 ERROR [[/drools-guvnor]] Exception starting filter Resteasy: java.lang.ClassCastException: org.drools.guvnor.server.jaxrs.GuvnorApplication cannot be cast to javax.ws.rs.core.Application

                      at org.jboss.resteasy.spi.ResteasyDeployment.createApplication(ResteasyDeployment.java:249) [:6.0.0.Final]

                      at org.jboss.resteasy.spi.ResteasyDeployment.start(ResteasyDeployment.java:192) [:6.0.0.Final]

                      at org.jboss.resteasy.plugins.server.servlet.ServletContainerDispatcher.init(ServletContainerDispatcher.java:67) [:6.0.0.Final]

                      at org.jboss.resteasy.plugins.server.servlet.FilterDispatcher.init(FilterDispatcher.java:39) [:6.0.0.Final]

                      at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:447) [:6.0.0.Final]

                      at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3246) [:6.0.0.Final]

                      at org.apache.catalina.core.StandardContext.start(StandardContext.java:3843) [:6.0.0.Final]

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:294) [:6.0.0.Final]

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146) [:6.0.0.Final]

                      at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:477) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.start(WebModule.java:95) [:6.0.0.Final]

                      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_26]

                      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at java.lang.reflect.Method.invoke(Unknown Source) [:1.6.0_26]

                      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) [:6.0.0.GA]

                      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:271) [:6.0.0.GA]

                      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:670) [:6.0.0.GA]

                      at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206) [:2.2.0.GA]

                      at $Proxy41.start(Unknown Source)          at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:53) [:2.2.0.GA]

                      at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:41) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:301) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:894) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:641) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:182) [:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:58) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:55) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:179) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1832) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1550) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1571) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1491) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679) [:2.2.0.GA]

                      at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106) [:6.0.0.Final]

                      at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:143) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.deploy(ProfileDeployAction.java:151) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.installActionInternal(ProfileDeployAction.java:94) [:0.2.2]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper$BasicProfileActivation.start(ProfileActivationWrapper.java:190) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper.start(ProfileActivationWrapper.java:87) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activateProfile(ProfileActivationService.java:215) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activate(ProfileActivationService.java:159) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.activate(AbstractProfileServiceBootstrap.java:112) [:0.2.2]

                      at org.jboss.profileservice.resolver.BasicResolverFactory$ProfileResolverFacade.deploy(BasicResolverFactory.java:87) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.start(AbstractProfileServiceBootstrap.java:91) [:0.2.2]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:132) [:6.0.0.Final]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:6.0.0.Final]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at java.lang.Thread.run(Unknown Source) [:1.6.0_26]

             

             

            22:08:46,653 ERROR [StandardContext] Error filterStart

            22:08:46,653 ERROR [StandardContext] Context [/drools-guvnor] startup failed due to previous errors

            22:08:46,655 INFO  [RepositoryShutdownService] Removing listeners....

            22:08:46,655 INFO  [STDOUT] Removing all listeners...

             

             

            22:08:46,655 INFO  [STDOUT] Listeners removed...

             

             

            22:08:46,656 INFO  [RepositoryShutdownService] Shutting down repository....

            22:08:46,658 INFO  [TransientRepository] Session closed

            22:08:46,659 INFO  [RepositoryImpl] Shutting down repository...

            22:08:46,661 INFO  [SearchIndex] Index closed: repository/repository/index

            22:08:46,661 INFO  [RepositoryImpl] shutting down workspace 'default'...

            22:08:46,662 INFO  [ObservationDispatcher] Notification of EventListeners stopped.

            22:08:46,664 INFO  [SearchIndex] Index closed: repository\workspaces\default/index

            22:08:46,701 INFO  [DerbyConnectionHelper] Database 'repository\workspaces\default/db' shutdown.

            22:08:46,704 INFO  [RepositoryImpl] workspace 'default' has been shutdown

            22:08:46,704 INFO  [RepositoryImpl] shutting down workspace 'security'...

            22:08:46,705 INFO  [ObservationDispatcher] Notification of EventListeners stopped.

            22:08:46,706 INFO  [SearchIndex] Index closed: repository\workspaces\security/index

            22:08:46,721 INFO  [DerbyConnectionHelper] Database 'repository\workspaces\security/db' shutdown.

            22:08:46,721 INFO  [RepositoryImpl] workspace 'security' has been shutdown

            22:08:46,738 INFO  [DerbyConnectionHelper] Database 'repository/version/db' shutdown.

            22:08:46,768 INFO  [RepositoryImpl] Repository has been shutdown

            22:08:46,768 INFO  [TransientRepository] Transient repository shut down

            22:08:46,768 INFO  [RulesRepositoryConfigurator] SHUTDOWN RULES CONFIG

            22:08:46,770 INFO  [MailboxService] Shutting down mailbox service

            22:08:46,770 INFO  [STDOUT] IS DOWN: true

             

             

            22:08:46,771 INFO  [MailboxService] Mailbox service is shutdown.

            22:08:46,809 ERROR [AbstractKernelController] Error installing to Start: name=jboss.web.deployment:war=/drools-guvnor state=Create mode=Manual requiredState=Installed: org.jboss.deployers.spi.DeploymentException: URL file:/C:/jboss-6.0.0.Final/server/default/tmp/vfs/automount1cced5a9b4f493cb/drools-guvnor.war-8e45ea35cf86c4c5/ deployment failed

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:325) [:6.0.0.Final]

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146) [:6.0.0.Final]

                      at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:477) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.start(WebModule.java:95) [:6.0.0.Final]

                      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_26]

                      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at java.lang.reflect.Method.invoke(Unknown Source) [:1.6.0_26]

                      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) [:6.0.0.GA]

                      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:271) [:6.0.0.GA]

                      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:670) [:6.0.0.GA]

                      at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206) [:2.2.0.GA]

                      at $Proxy41.start(Unknown Source)          at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:53) [:2.2.0.GA]

                      at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:41) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:301) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:894) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:641) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:182) [:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:58) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:55) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:179) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1832) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1550) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1571) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1491) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679) [:2.2.0.GA]

                      at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106) [:6.0.0.Final]

                      at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:143) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.deploy(ProfileDeployAction.java:151) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.installActionInternal(ProfileDeployAction.java:94) [:0.2.2]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper$BasicProfileActivation.start(ProfileActivationWrapper.java:190) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper.start(ProfileActivationWrapper.java:87) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activateProfile(ProfileActivationService.java:215) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activate(ProfileActivationService.java:159) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.activate(AbstractProfileServiceBootstrap.java:112) [:0.2.2]

                      at org.jboss.profileservice.resolver.BasicResolverFactory$ProfileResolverFacade.deploy(BasicResolverFactory.java:87) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.start(AbstractProfileServiceBootstrap.java:91) [:0.2.2]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:132) [:6.0.0.Final]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:6.0.0.Final]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at java.lang.Thread.run(Unknown Source) [:1.6.0_26]

             

             

            22:09:44,158 INFO  [TomcatDeployment] deploy, ctxPath=/gwt-console-server

            22:09:44,324 ERROR [[/gwt-console-server]] Exception sending context initialized event to listener instance of class org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap: java.lang.ClassCastException: org.jboss.resteasy.core.ThreadLocalResteasyProviderFactory cannot be cast to org.jboss.resteasy.spi.ResteasyProviderFactory

                      at org.jboss.resteasy.spi.ResteasyProviderFactory.getInstance(ResteasyProviderFactory.java:182) [:]

                      at org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap.contextInitialized(ResteasyBootstrap.java:48) [:6.0.0.Final]

                      at org.apache.catalina.core.StandardContext.contextListenerStart(StandardContext.java:3369) [:6.0.0.Final]

                      at org.apache.catalina.core.StandardContext.start(StandardContext.java:3828) [:6.0.0.Final]

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:294) [:6.0.0.Final]

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146) [:6.0.0.Final]

                      at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:477) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.start(WebModule.java:95) [:6.0.0.Final]

                      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_26]

                      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at java.lang.reflect.Method.invoke(Unknown Source) [:1.6.0_26]

                      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) [:6.0.0.GA]

                      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:271) [:6.0.0.GA]

                      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:670) [:6.0.0.GA]

                      at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206) [:2.2.0.GA]

                      at $Proxy41.start(Unknown Source)          at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:53) [:2.2.0.GA]

                      at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:41) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:301) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:894) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:641) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:182) [:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:58) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:55) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:179) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1832) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1550) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1571) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1491) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679) [:2.2.0.GA]

                      at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106) [:6.0.0.Final]

                      at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:143) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.deploy(ProfileDeployAction.java:151) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.installActionInternal(ProfileDeployAction.java:94) [:0.2.2]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper$BasicProfileActivation.start(ProfileActivationWrapper.java:190) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper.start(ProfileActivationWrapper.java:87) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activateProfile(ProfileActivationService.java:215) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activate(ProfileActivationService.java:159) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.activate(AbstractProfileServiceBootstrap.java:112) [:0.2.2]

                      at org.jboss.profileservice.resolver.BasicResolverFactory$ProfileResolverFacade.deploy(BasicResolverFactory.java:87) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.start(AbstractProfileServiceBootstrap.java:91) [:0.2.2]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:132) [:6.0.0.Final]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:6.0.0.Final]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at java.lang.Thread.run(Unknown Source) [:1.6.0_26]

             

             

            22:09:44,387 INFO  [config] Initializing Mojarra 2.0.3 ( b05) for context '/gwt-console-server'

            22:09:52,575 ERROR [[/gwt-console-server]] Exception sending context initialized event to listener instance of class org.jboss.web.jsf.integration.config.JBossMojarra20ConfigureListener: java.lang.LinkageError: loader constraint violation: when resolving interface method "javax.servlet.jsp.JspApplicationContext.getExpressionFactory()Ljavax/el/ExpressionFactory;" the class loader (instance of org/jboss/classloader/spi/base/BaseClassLoader) of the current class, com/sun/faces/config/ConfigureListener, and the class loader (instance of org/jboss/classloader/spi/base/BaseClassLoader) for resolved class, javax/servlet/jsp/JspApplicationContext, have different Class objects for the type javax/el/ExpressionFactory used in the signature

                      at com.sun.faces.config.ConfigureListener.registerELResolverAndListenerWithJsp(ConfigureListener.java:670) [:2.0.3-]

                      at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:238) [:2.0.3-]

                      at org.jboss.web.jsf.integration.config.JBossMojarraConfigureListener.contextInitialized(JBossMojarraConfigureListener.java:58) [:1.0.3]

                      at org.apache.catalina.core.StandardContext.contextListenerStart(StandardContext.java:3369) [:6.0.0.Final]

                      at org.apache.catalina.core.StandardContext.start(StandardContext.java:3828) [:6.0.0.Final]

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:294) [:6.0.0.Final]

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146) [:6.0.0.Final]

                      at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:477) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.start(WebModule.java:95) [:6.0.0.Final]

                      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_26]

                      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at java.lang.reflect.Method.invoke(Unknown Source) [:1.6.0_26]

                      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) [:6.0.0.GA]

                      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:271) [:6.0.0.GA]

                      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:670) [:6.0.0.GA]

                      at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206) [:2.2.0.GA]

                      at $Proxy41.start(Unknown Source)          at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:53) [:2.2.0.GA]

                      at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:41) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:301) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:894) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:641) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:182) [:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:58) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:55) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:179) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1832) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1550) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1571) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1491) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679) [:2.2.0.GA]

                      at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106) [:6.0.0.Final]

                      at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:143) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.deploy(ProfileDeployAction.java:151) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.installActionInternal(ProfileDeployAction.java:94) [:0.2.2]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper$BasicProfileActivation.start(ProfileActivationWrapper.java:190) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper.start(ProfileActivationWrapper.java:87) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activateProfile(ProfileActivationService.java:215) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activate(ProfileActivationService.java:159) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.activate(AbstractProfileServiceBootstrap.java:112) [:0.2.2]

                      at org.jboss.profileservice.resolver.BasicResolverFactory$ProfileResolverFacade.deploy(BasicResolverFactory.java:87) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.start(AbstractProfileServiceBootstrap.java:91) [:0.2.2]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:132) [:6.0.0.Final]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:6.0.0.Final]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at java.lang.Thread.run(Unknown Source) [:1.6.0_26]

             

             

            22:09:52,583 ERROR [StandardContext] Error listenerStart

            22:09:52,583 ERROR [StandardContext] Context [/gwt-console-server] startup failed due to previous errors

            22:09:52,591 ERROR [AbstractKernelController] Error installing to Start: name=jboss.web.deployment:war=/gwt-console-server state=Create mode=Manual requiredState=Installed: org.jboss.deployers.spi.DeploymentException: URL file:/C:/jboss-6.0.0.Final/server/default/tmp/vfs/automount1cced5a9b4f493cb/jbpm-gwt-console-server.war-41570280a0d74f41/ deployment failed

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:325) [:6.0.0.Final]

                      at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146) [:6.0.0.Final]

                      at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:477) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118) [:6.0.0.Final]

                      at org.jboss.web.deployers.WebModule.start(WebModule.java:95) [:6.0.0.Final]

                      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_26]

                      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) [:1.6.0_26]

                      at java.lang.reflect.Method.invoke(Unknown Source) [:1.6.0_26]

                      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96) [:6.0.0.GA]

                      at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) [:6.0.0.GA]

                      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:271) [:6.0.0.GA]

                      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:670) [:6.0.0.GA]

                      at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206) [:2.2.0.GA]

                      at $Proxy41.start(Unknown Source)          at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:53) [:2.2.0.GA]

                      at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:41) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:301) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:894) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:641) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:182) [:2.2.0.GA]

                      at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:58) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62) [:2.2.0.GA]

                      at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:55) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:179) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1832) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1550) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1571) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1491) [:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679) [:2.2.0.GA]

                      at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106) [:6.0.0.Final]

                      at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:143) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.deploy(ProfileDeployAction.java:151) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileDeployAction.installActionInternal(ProfileDeployAction.java:94) [:0.2.2]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42) [jboss-kernel.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper$BasicProfileActivation.start(ProfileActivationWrapper.java:190) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationWrapper.start(ProfileActivationWrapper.java:87) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activateProfile(ProfileActivationService.java:215) [:0.2.2]

                      at org.jboss.profileservice.dependency.ProfileActivationService.activate(ProfileActivationService.java:159) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.activate(AbstractProfileServiceBootstrap.java:112) [:0.2.2]

                      at org.jboss.profileservice.resolver.BasicResolverFactory$ProfileResolverFacade.deploy(BasicResolverFactory.java:87) [:0.2.2]

                      at org.jboss.profileservice.bootstrap.AbstractProfileServiceBootstrap.start(AbstractProfileServiceBootstrap.java:91) [:0.2.2]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:132) [:6.0.0.Final]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:6.0.0.Final]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at java.lang.Thread.run(Unknown Source) [:1.6.0_26]

             

             

            22:09:52,610 INFO  [PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=jbpm-gwt-console-server.war#org.jbpm.persistence.jpa

            22:09:57,573 INFO  [Version] Hibernate Commons Annotations 3.2.0.Final

            22:09:57,788 INFO  [Environment] Hibernate 3.6.0.Final

            22:09:57,799 INFO  [Environment] hibernate.properties not found

            22:09:57,813 INFO  [Environment] Bytecode provider name : javassist

            22:09:57,846 INFO  [Environment] using JDK 1.4 java.sql.Timestamp handling

            22:09:58,239 INFO  [Version] Hibernate EntityManager 3.6.0.Final

            22:09:58,346 INFO  [Ejb3Configuration] Processing PersistenceUnitInfo [

                      name: org.jbpm.persistence.jpa

                      ...]

            22:09:58,485 WARN  [Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly.PersistenceUnitInfo.getNewTempClassLoader() is null.

            22:09:58,558 INFO  [Configuration] Reading mappings from resource : META-INF/JBPMorm.xml

            22:09:58,610 ERROR [ErrorLogger] Error parsing XML (5) : cvc-complex-type.3.1: Value '1.0' of attribute 'version' of element 'entity-mappings' is not valid with respect to the corresponding attribute use. Attribute 'version' has a fixed value of '2.0'.

            22:09:58,836 INFO  [QueryBinder] Binding Named query: ProcessInstancesWaitingForEvent => select processInstanceInfo.processInstanceId from ProcessInstanceInfo processInstanceInfo where :type in elements(processInstanceInfo.eventTypes)

            22:09:58,852 INFO  [AnnotationBinder] Binding entity from annotated class: org.jbpm.persistence.processinstance.ProcessInstanceInfo

            22:09:59,032 INFO  [EntityBinder] Bind entity org.jbpm.persistence.processinstance.ProcessInstanceInfo on table ProcessInstanceInfo

            22:09:59,222 INFO  [AnnotationBinder] Binding entity from annotated class: org.drools.persistence.info.WorkItemInfo

            22:09:59,223 INFO  [EntityBinder] Bind entity org.drools.persistence.info.WorkItemInfo on table WorkItemInfo

            22:09:59,230 INFO  [AnnotationBinder] Binding entity from annotated class: org.drools.persistence.info.SessionInfo

            22:09:59,230 INFO  [EntityBinder] Bind entity org.drools.persistence.info.SessionInfo on table SessionInfo

            22:09:59,299 INFO  [Version] Hibernate Validator 3.1.0.GA

            22:09:59,415 INFO  [Version] Hibernate Validator 4.1.0.Final

            22:09:59,453 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.

            22:09:59,883 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.

            22:09:59,909 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.

            22:09:59,922 INFO  [HibernateSearchEventListenerRegister] Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.

            22:09:59,941 INFO  [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider

            22:09:59,950 INFO  [InjectedDataSourceConnectionProvider] Using provided datasource

            22:10:01,262 INFO  [SettingsFactory] Database ->

                   name : MySQL

                version : 5.1.58-community

                  major : 5

                  minor : 1

            22:10:01,262 INFO  [SettingsFactory] Driver ->

                   name : MySQL-AB JDBC Driver

                version : mysql-connector-java-5.1.17 ( Revision: ${bzr.revision-id} )

                  major : 5

                  minor : 1

            22:10:01,416 INFO  [Dialect] Using dialect: org.hibernate.dialect.MySQL5InnoDBDialect

            22:10:01,523 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory

            22:10:01,529 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup

            22:10:01,535 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup

            22:10:01,536 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled

            22:10:01,536 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled

            22:10:01,536 INFO  [SettingsFactory] JDBC batch size: 15

            22:10:01,536 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled

            22:10:01,537 INFO  [SettingsFactory] Scrollable result sets: enabled

            22:10:01,537 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): enabled

            22:10:01,537 INFO  [SettingsFactory] Connection release mode: auto

            22:10:01,540 INFO  [SettingsFactory] Maximum outer join fetch depth: 3

            22:10:01,541 INFO  [SettingsFactory] Default batch fetch size: 1

            22:10:01,541 INFO  [SettingsFactory] Generate SQL with comments: disabled

            22:10:01,541 INFO  [SettingsFactory] Order SQL updates by primary key: disabled

            22:10:01,541 INFO  [SettingsFactory] Order SQL inserts for batching: disabled

            22:10:01,542 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory

            22:10:01,649 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory

            22:10:01,650 INFO  [SettingsFactory] Query language substitutions: {}

            22:10:01,650 INFO  [SettingsFactory] JPA-QL strict compliance: enabled

            22:10:01,650 INFO  [SettingsFactory] Second-level cache: enabled

            22:10:01,650 INFO  [SettingsFactory] Query cache: disabled

            22:10:01,688 INFO  [SettingsFactory] Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge

            22:10:01,708 INFO  [RegionFactoryCacheProviderBridge] Cache provider: org.hibernate.cache.HashtableCacheProvider

            22:10:01,712 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled

            22:10:01,713 INFO  [SettingsFactory] Cache region prefix: persistence.unit:unitName=jbpm-gwt-console-server.war#org.jbpm.persistence.jpa

            22:10:01,713 INFO  [SettingsFactory] Structured second-level cache entries: disabled

            22:10:01,730 INFO  [SettingsFactory] Statistics: disabled

            22:10:01,730 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled

            22:10:01,731 INFO  [SettingsFactory] Default entity-mode: pojo

            22:10:01,731 INFO  [SettingsFactory] Named query checking : enabled

            22:10:01,731 INFO  [SettingsFactory] Check Nullability in Core (should be disabled when Bean Validation is on): disabled

            22:10:01,881 INFO  [SessionFactoryImpl] building session factory

            22:10:02,590 INFO  [SessionFactoryObjectFactory] Factory name: persistence.unit:unitName=jbpm-gwt-console-server.war#org.jbpm.persistence.jpa

            22:10:02,602 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}

            22:10:02,606 INFO  [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.unit:unitName=jbpm-gwt-console-server.war#org.jbpm.persistence.jpa

            22:10:02,607 WARN  [SessionFactoryObjectFactory] InitialContext did not implement EventContext

            22:10:02,635 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.

            22:10:02,645 INFO  [DefaultTraversableResolver] Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.

            22:10:02,673 INFO  [SchemaExport] Running hbm2ddl schema export

            22:10:02,675 INFO  [SchemaExport] exporting generated schema to database

            22:10:03,829 INFO  [SchemaExport] schema export complete

            22:10:03,839 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}

            22:10:14,112 INFO  [TomcatDeployment] deploy, ctxPath=/jbpm-console

            22:10:14,156 ERROR [STDERR] SLF4J: Class path contains multiple SLF4J bindings.

             

             

            22:10:14,156 ERROR [STDERR] SLF4J: Found binding in [vfs:/C:/jboss-6.0.0.Final/common/lib/slf4j-jboss-logmanager.jar/org/slf4j/impl/StaticLoggerBinder.class]

             

             

            22:10:14,157 ERROR [STDERR] SLF4J: Found binding in [vfs:/C:/jboss-6.0.0.Final/server/default/deploy/jbpm-gwt-console.war/WEB-INF/lib/slf4j-log4j12-1.6.0.jar/org/slf4j/impl/StaticLoggerBinder.class]

             

             

            22:10:14,157 ERROR [STDERR] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.

             

             

            22:10:14,265 ERROR [STDERR] log4j:WARN No appenders could be found for logger (org.jboss.errai.bus.server.util.ConfigUtil).

             

             

            22:10:14,265 ERROR [STDERR] log4j:WARN Please initialize the log4j system properly.

             

             

            22:10:14,465 INFO  [service] Removing bootstrap log handlers

            22:10:14,545 ERROR [ProfileServiceBootstrap] Failed to load profile:: org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):

             

             

            DEPLOYMENTS IN ERROR:

              Deployment "jboss.web.deployment:war=/drools-guvnor" is in error due to the following reason(s): org.jboss.deployers.spi.DeploymentException: URL file:/C:/jboss-6.0.0.Final/server/default/tmp/vfs/automount1cced5a9b4f493cb/drools-guvnor.war-8e45ea35cf86c4c5/ deployment failed

              Deployment "jboss.web.deployment:war=/gwt-console-server" is in error due to the following reason(s): org.jboss.deployers.spi.DeploymentException: URL file:/C:/jboss-6.0.0.Final/server/default/tmp/vfs/automount1cced5a9b4f493cb/jbpm-gwt-console-server.war-41570280a0d74f41/ deployment failed

             

             

                      at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1228) [:2.2.0.GA]

                      at org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:905) [:2.2.0.GA]

                      at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.checkComplete(MainDeployerPlugin.java:87) [:6.0.0.Final]

                      at org.jboss.profileservice.deployment.ProfileDeployerPluginRegistry.checkAllComplete(ProfileDeployerPluginRegistry.java:107) [:0.2.2]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:135) [:6.0.0.Final]

                      at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:6.0.0.Final]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-5]

                      at java.lang.Thread.run(Unknown Source) [:1.6.0_26]

             

             

            22:10:14,607 INFO  [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-localhost%2F127.0.0.1-8080

            22:10:14,611 INFO  [org.apache.coyote.ajp.AjpProtocol] Starting Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009

            22:10:14,618 INFO  [org.jboss.bootstrap.impl.base.server.AbstractServer] JBossAS [6.0.0.Final "Neo"] Started in 10m:22s:436ms

            22:10:20,231 WARN  [com.arjuna.ats.jta] ARJUNA-16027 Local XARecoveryModule.xaRecovery got XA exception XAException.XAER_RMERR: javax.transaction.xa.XAException

                      at oracle.jdbc.xa.OracleXAResource.recover(OracleXAResource.java:526) [:Oracle JDBC Driver version - "10.2.0.1.0XE"]

                      at org.jboss.resource.adapter.jdbc.xa.XAManagedConnection.recover(XAManagedConnection.java:294) [:6.0.0.Final]

                      at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.xaRecovery(XARecoveryModule.java:468) [:6.0.0.Final]

                      at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.resourceInitiatedRecoveryForRecoveryHelpers(XARecoveryModule.java:436) [:6.0.0.Final]

                      at com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.periodicWorkSecondPass(XARecoveryModule.java:155) [:6.0.0.Final]

                      at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:789) [:6.0.0.Final]

                      at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:371) [:6.0.0.Final]

             

            FOR THE ABOVE EXCEPTION I HAVE STARTED TO LOOK INTO :

            http://community.jboss.org/thread/166243

             

            Currently trying to set it up ....

             

             

             

            Thanks for the Reply

            • 3. Re: Deploying jBPM 5.1 on jBoss 6
              chaitanya1987

                Was able to get it working by removing certain jars from the .war files :

              (Placing extracts from build.xml used)

               

              http://blog.athico.com/2011/05/guvnor-wars-per-application-server.html

               

               

              <target name="install.jBPM-gwt-console.into.jboss1" depends="download.h2,download.birt,download.jBPM.gwt-console">

                  <!-- gwt-console -->

                  <mkdir dir="${install.home}/target"/>

                  <unzip src="${install.home}/lib/jbpm-${jBPM.version}-gwt-console.zip" dest="${install.home}/target" />

                  <mkdir dir="${install.home}/target/jbpm-gwt-console-server-war"/>

                  <unzip src="${install.home}/target/jbpm-gwt-console-server-${jBPM.version}.war"

                         dest="${install.home}/target/jbpm-gwt-console-server-war"/>

                  <copy file="${install.home}/db/hibernate.cfg.xml"

                        tofile="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/classes/hibernate.cfg.xml"

                        overwrite="true" />

                  <copy file="${install.home}/db/persistence.xml"

                        tofile="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/classes/META-INF/persistence.xml"

                        overwrite="true" />

                  <!-- Fix for conflicting javassist jar -->

                        <echo message="Deleting conflicting jars from jbpm-gwt-console-server-war"/>

                  <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/javassist-3.6.0.GA.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/jaxrs-api-1.0.2.GA.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/el-api.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/slf4j-api-1.6.0.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/slf-log4j12-1.6.0.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/slf4j-api-1.5.2.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/slf4j-log4j12-1.5.2.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/slf4j-simple-1.5.2.jar"/>

              <!--          <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/el-impl-1.0.jar"/> -->

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/javax.jsf_1.2.0.0.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/glassfish.jsf_1.2.3.2.jar"/>

                        <delete file="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/lib/glassfish.jstl_1.2.0.1.jar"/>

               

                  <!-- Other configuration like work item handlers -->

                  <copy todir="${install.home}/target/jbpm-gwt-console-server-war/WEB-INF/classes" overwrite="true">

                    <fileset dir="${install.home}/conf"/>

                  </copy>

                  <zip basedir="${install.home}/target/jbpm-gwt-console-server-war"

                       destfile="${install.home}/target/jbpm-gwt-console-server-${jBPM.version}.war"/>

                  <copy file="${install.home}/target/jbpm-gwt-console-server-${jBPM.version}.war"

                        tofile="${jboss.server.deploy.dir}/jbpm-gwt-console-server.war"

                        overwrite="true" />

                  <copy file="${install.home}/target/jbpm-gwt-console-${jBPM.version}.war"

                        tofile="${jboss.server.deploy.dir}/jbpm-gwt-console.war"

                        overwrite="true" />

                  <delete dir="${install.home}/target"/>

                  <!-- db configuration -->

                  <copy file="${install.home}/db/testDS1-ds.xml"

                        tofile="${jboss.server.deploy.dir}/testDS1-ds.xml"

                        overwrite="true" />

                  <copy todir="${jboss.server.lib.dir}" overwrite="true">

                    <fileset dir="${install.home}/db/driver"/>

                  </copy>

                  <!-- authentication configuration -->

                  <copy file="${install.home}/auth/users.properties"

                        tofile="${jboss.server.conf.dir}/users.properties"

                        overwrite="true" />

                  <copy file="${install.home}/auth/roles.properties"

                        tofile="${jboss.server.conf.dir}/roles.properties"

                        overwrite="true" />

                  <!-- reporting -->

                  <antcall target="install.reporting.into.jboss" />

                </target>

               

               

               

               

                2)

               

                <target name="install.guvnor.into.jboss.other1">

               

              <mkdir dir="${install.home}/target/drools-guvnor"/>

                  <unzip src="${install.home}/lib/guvnor-5.2.0.Final-jboss-as-6.0.war" dest="${install.home}/target/drools-guvnor" />

                         <echo message="Removing the unrequired jars from drools-guvnor.war"/>

                  <delete>

                    <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="xml-apis-*.jar"/>                   

                              <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="jta-*.jar"/>

                                    <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="slf4j-api-1.6.0.jar"/>

                                    <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="slf4j-log4j12-1.6.0.jar"/>

                        <!--            <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="jsf-api-*.jar"/> -->

                                    <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/lib" includes="javassist-*.jar"/>

                                    <fileset dir="${install.home}/target/drools-guvnor/WEB-INF/classes/org/drools/guvnor/server/jaxrs" includes="GuvnorApplication.class"/>

                                   

                  </delete>

                  <zip basedir="${install.home}/target/drools-guvnor"

                       destfile="${install.home}/target/drools-guvnor.war"/>

                  <copy file="${install.home}/target/drools-guvnor.war"

                        tofile="${jboss.server.deploy.dir}/drools-guvnor.war"

                        overwrite="true" />

                  <delete dir="${install.home}/target"/>

                    

                </target>