13 Replies Latest reply on Dec 21, 2012 6:17 AM by eaa

    Missing jBPM tables

    lauradp

      Hello everybody,

      I was reading about jBPM persistence (http://docs.jboss.org/jbpm/v5.4/userguide/ch.core-persistence.html) when I realized that my database (see screen attached) missed some tables described in the linked guide

      (e.g. SessionInfo,ProcessInstanceInfo, WorkItemInfo).

       

      Did I missed some steps when I configured persistence?

       

      Thanks

       

      Laura

        • 1. Re: Missing jBPM libraries
          eaa

          All the tables you have there are only related to Human Tasks and not process persistence. Could you please share with us your persistence.xml file?

           

          Best Regards,

          • 2. Re: Missing jBPM libraries
            lauradp

            This is my 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">

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

                <jta-data-source>java:/jdbc/jbpm-ds</jta-data-source>

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

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

                <mapping-file>META-INF/ProcessInstanceInfo.hbm.xml</mapping-file>

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

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

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

                <class>org.jbpm.process.audit.ProcessInstanceLog</class>

                <class>org.jbpm.process.audit.NodeInstanceLog</class>

                <class>org.jbpm.process.audit.VariableInstanceLog</class>

                <class>org.jbpm.task.Attachment</class>

                <class>org.jbpm.task.Content</class>

                <class>org.jbpm.task.BooleanExpression</class>

                <class>org.jbpm.task.Comment</class>

                <class>org.jbpm.task.Deadline</class>

                <class>org.jbpm.task.Comment</class>

                <class>org.jbpm.task.Deadline</class>

                <class>org.jbpm.task.Delegation</class>

                <class>org.jbpm.task.Escalation</class>

                <class>org.jbpm.task.Group</class>

                <class>org.jbpm.task.I18NText</class>

                <class>org.jbpm.task.Notification</class>

                <class>org.jbpm.task.EmailNotification</class>

                <class>org.jbpm.task.EmailNotificationHeader</class>

                <class>org.jbpm.task.PeopleAssignments</class>

                <class>org.jbpm.task.Reassignment</class>

                <class>org.jbpm.task.Status</class>

                <class>org.jbpm.task.Task</class>

                <class>org.jbpm.task.TaskData</class>

                <class>org.jbpm.task.SubTasksStrategy</class>

                <class>org.jbpm.task.OnParentAbortAllSubTasksEndStrategy</class>

                <class>org.jbpm.task.OnAllSubTasksEndParentEndStrategy</class>

                <class>org.jbpm.task.User</class>

                <properties>

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

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

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

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

                  <!--

                  <property name="hibernate.transaction.manager_lookup_class" value="org.jbpm.integration.console.JBPMTransactionManager" />

                  -->

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

                </properties>       

              </persistence-unit>

             

             

              <persistence-unit name="org.jbpm.task">

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

                <jta-data-source>java:/jdbc/jbpm-ds</jta-data-source>      

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

                <class>org.jbpm.task.Attachment</class>

                <class>org.jbpm.task.Content</class>

                <class>org.jbpm.task.BooleanExpression</class>

                <class>org.jbpm.task.Comment</class>

                <class>org.jbpm.task.Deadline</class>

                <class>org.jbpm.task.Comment</class>

                <class>org.jbpm.task.Deadline</class>

                <class>org.jbpm.task.Delegation</class>

                <class>org.jbpm.task.Escalation</class>

                <class>org.jbpm.task.Group</class>

                <class>org.jbpm.task.I18NText</class>

                <class>org.jbpm.task.Notification</class>

                <class>org.jbpm.task.EmailNotification</class>

                <class>org.jbpm.task.EmailNotificationHeader</class>

                <class>org.jbpm.task.PeopleAssignments</class>

                <class>org.jbpm.task.Reassignment</class>

                <class>org.jbpm.task.Status</class>

                <class>org.jbpm.task.Task</class>

                <class>org.jbpm.task.TaskData</class>

                <class>org.jbpm.task.SubTasksStrategy</class>

                <class>org.jbpm.task.OnParentAbortAllSubTasksEndStrategy</class>

                <class>org.jbpm.task.OnAllSubTasksEndParentEndStrategy</class>

                <class>org.jbpm.task.User</class>

                <properties>

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

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

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

                  <!--

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

                  -->

                  <property name="hibernate.transaction.manager_lookup_class" value="org.jbpm.integration.console.JBPMTransactionManager" />

                </properties>       

              </persistence-unit>

               

            </persistence>

            • 3. Re: Missing jBPM libraries
              eaa

              First thing to notice is that if you are using 2 different persistence units, then you can clean up 'org.jbpm.persistence.jpa' by removing all the 'org.jbpm.task.*' classes.

              The dependency you need to have is:

                             <groupId>org.jbpm</groupId>

                             <artifactId>jbpm-persistence-jpa</artifactId>

               

              Other than that, make sure you are actually using 'org.jbpm.persistence.jpa' persistence unit in your application.

               

              Best Regards,

              1 of 1 people found this helpful
              • 4. Re: Missing jBPM libraries
                lauradp

                Thanks for your answer!

                 

                "First thing to notice is that if you are using 2 different persistence units, then you can clean up 'org.jbpm.persistence.jpa' by removing all the 'org.jbpm.task.*' classes." =>

                 

                <?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">

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

                    <jta-data-source>java:/jdbc/jbpm-ds</jta-data-source>

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

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

                    <mapping-file>META-INF/ProcessInstanceInfo.hbm.xml</mapping-file>

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

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

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

                    <class>org.jbpm.process.audit.ProcessInstanceLog</class>

                    <class>org.jbpm.process.audit.NodeInstanceLog</class>

                    <class>org.jbpm.process.audit.VariableInstanceLog</class>

                    <properties>

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

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

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

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

                      <!--

                      <property name="hibernate.transaction.manager_lookup_class" value="org.jbpm.integration.console.JBPMTransactionManager" />

                      -->

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

                    </properties>      

                  </persistence-unit>

                 

                 

                  <persistence-unit name="org.jbpm.task">

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

                    <jta-data-source>java:/jdbc/jbpm-ds</jta-data-source>     

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

                    <class>org.jbpm.task.Attachment</class>

                    <class>org.jbpm.task.Content</class>

                    <class>org.jbpm.task.BooleanExpression</class>

                    <class>org.jbpm.task.Comment</class>

                    <class>org.jbpm.task.Deadline</class>

                    <class>org.jbpm.task.Comment</class>

                    <class>org.jbpm.task.Deadline</class>

                    <class>org.jbpm.task.Delegation</class>

                    <class>org.jbpm.task.Escalation</class>

                    <class>org.jbpm.task.Group</class>

                    <class>org.jbpm.task.I18NText</class>

                    <class>org.jbpm.task.Notification</class>

                    <class>org.jbpm.task.EmailNotification</class>

                    <class>org.jbpm.task.EmailNotificationHeader</class>

                    <class>org.jbpm.task.PeopleAssignments</class>

                    <class>org.jbpm.task.Reassignment</class>

                    <class>org.jbpm.task.Status</class>

                    <class>org.jbpm.task.Task</class>

                    <class>org.jbpm.task.TaskData</class>

                    <class>org.jbpm.task.SubTasksStrategy</class>

                    <class>org.jbpm.task.OnParentAbortAllSubTasksEndStrategy</class>

                    <class>org.jbpm.task.OnAllSubTasksEndParentEndStrategy</class>

                    <class>org.jbpm.task.User</class>

                    <properties>

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

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

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

                      <!--

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

                      -->

                      <property name="hibernate.transaction.manager_lookup_class" value="org.jbpm.integration.console.JBPMTransactionManager" />

                    </properties>      

                  </persistence-unit>

                  

                </persistence>

                wheere should I put dependencies?

                 

                Laura

                • 5. Re: Missing jBPM libraries
                  eaa

                  I realized that you are also using audit, so you will also need  jbpm-bam module. If you are using maven, you can add the dependencies in your pom.xml otherwise, you will need to download the jars and place them in the classpath (unless you are using an IDE that does this for you).

                   

                  Best Regards,

                  • 6. Re: Missing jBPM libraries
                    lauradp

                    Thanks for you answer.

                     

                    So I shuold include bam jars in my projects? Where should I reterive them?

                     

                    Where shopul I put

                     

                                   <groupId>org.jbpm</groupId>

                                   <artifactId>jbpm-persistence-jpa</artifactId>

                    • 7. Re: Missing jBPM libraries
                      lauradp

                      Sorry, the discussion title was wrong

                      • 8. Re: Missing jBPM libraries
                        eaa

                        What build system are you using in your project? maven, gradle, ant, ide-specific?

                        What I've pasted are the Maven artifacts you should use. If you are not using Maven, you can get the jars from here: http://sourceforge.net/projects/jbpm/files/jBPM%205/jbpm-5.4.0.Final/jbpm-5.4.0.Final-bin.zip/download

                         

                        Best Regards,

                        • 9. Re: Missing jBPM libraries
                          lauradp

                          I'n not using any build system.

                          • 10. Re: Missing jBPM libraries
                            lauradp

                            Hi,

                            I have all jbpm runtime libraries in my WEB-INF/lib folder (including jbpm-persistence-jpa, and jbpm-bam) butno table is added to my DB.

                            • 11. Re: Missing jBPM libraries
                              eaa

                              I noticed you are using the same data-source for both persistence units. This means that the same database is going to be used for both persistence units. I'm not sure about the expected behavior here.

                              Do you have any error or warning in the appserver output?

                               

                              Best Regards,

                              • 12. Re: Missing jBPM libraries
                                lauradp

                                Hi, thanks for your answer. I have many warnings, but they doesn't appera as db related.

                                Here's my log:

                                 

                                16:57:29,814 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 38) JBAS013101: Activating Security Subsystem

                                16:57:29,835 INFO  [org.jboss.as.configadmin] (ServerService Thread Pool -- 23) JBAS016200: Activating ConfigAdmin Subsystem

                                16:57:29,802 INFO  [org.jboss.as.osgi] (ServerService Thread Pool -- 34) JBAS011940: Activating OSGi Subsystem

                                16:57:29,832 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 33) JBAS011800: Activating Naming Subsystem

                                16:57:29,810 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 28) JBAS010280: Activating Infinispan subsystem.

                                16:57:29,813 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 42) JBAS015537: Activating WebServices Extension

                                16:57:29,896 INFO  [org.jboss.as.security] (MSC service thread 1-5) JBAS013100: Current PicketBox version=4.0.7.Final

                                16:57:30,348 INFO  [org.jboss.as.connector] (MSC service thread 1-4) JBAS010408: Starting JCA Subsystem (JBoss IronJacamar 1.0.9.Final)

                                16:57:31,840 INFO  [org.jboss.as.naming] (MSC service thread 1-7) JBAS011802: Starting Naming Service

                                16:57:31,912 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 24) JBAS010404: Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver (version 5.0)

                                16:57:33,966 WARN  [org.jboss.as.messaging] (MSC service thread 1-7) JBAS011600: AIO wasn't located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal

                                16:57:34,579 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-7) live server is starting with configuration HornetQ Configuration (clustered=false,backup=false,sharedStore=true,journalDirectory=C:\ApplicationServer\jboss-as-7.1.1.Final\standalone\data\messagingjournal,bindingsDirectory=C:\ApplicationServer\jboss-as-7.1.1.Final\standalone\data\messagingbindings,largeMessagesDirectory=C:\ApplicationServer\jboss-as-7.1.1.Final\standalone\data\messaginglargemessages,pagingDirectory=C:\ApplicationServer\jboss-as-7.1.1.Final\standalone\data\messagingpaging)

                                16:57:34,590 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-7) Waiting to obtain live lock

                                16:57:34,768 INFO  [org.hornetq.core.persistence.impl.journal.JournalStorageManager] (MSC service thread 1-7) Using NIO Journal

                                16:57:35,285 INFO  [org.hornetq.core.server.impl.FileLockNodeManager] (MSC service thread 1-7) Waiting to obtain live lock

                                16:57:35,287 INFO  [org.hornetq.core.server.impl.FileLockNodeManager] (MSC service thread 1-7) Live Server Obtained live lock

                                16:57:35,617 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:/jdbc/jbpm-ds]

                                16:57:36,138 INFO  [org.apache.coyote.http11.Http11AprProtocol] (MSC service thread 1-4) Starting Coyote HTTP/1.1 on http-localhost-127.0.0.1-8080

                                16:57:37,896 INFO  [org.hornetq.core.remoting.impl.netty.NettyAcceptor] (MSC service thread 1-7) Started Netty Acceptor version 3.2.5.Final-a96d88c localhost:5455 for CORE protocol

                                16:57:37,900 INFO  [org.hornetq.core.remoting.impl.netty.NettyAcceptor] (MSC service thread 1-7) Started Netty Acceptor version 3.2.5.Final-a96d88c localhost:5445 for CORE protocol

                                16:57:37,904 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-7) Server is now live

                                16:57:37,905 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-7) HornetQ Server version 2.2.13.Final (HQ_2_2_13_FINAL_AS7, 122) [5e45cb1d-3d4b-11e2-9d07-1c7508415871]) started

                                16:57:37,939 INFO  [org.jboss.as.messaging] (MSC service thread 1-7) JBAS011601: Bound messaging object to jndi name java:/ConnectionFactory

                                16:57:37,944 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-3) trying to deploy queue jms.queue.testQueue

                                16:57:37,958 INFO  [org.jboss.as.messaging] (MSC service thread 1-3) JBAS011601: Bound messaging object to jndi name java:/queue/test

                                16:57:37,961 INFO  [org.jboss.as.messaging] (MSC service thread 1-3) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/test

                                16:57:37,963 INFO  [org.jboss.as.messaging] (MSC service thread 1-1) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory

                                16:57:37,965 INFO  [org.jboss.as.messaging] (MSC service thread 1-1) JBAS011601: Bound messaging object to jndi name java:/RemoteConnectionFactory

                                16:57:37,966 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-8) trying to deploy queue jms.queue.testQ

                                16:57:37,969 INFO  [org.jboss.as.messaging] (MSC service thread 1-8) JBAS011601: Bound messaging object to jndi name java:/queue/TestQ

                                16:57:37,971 INFO  [org.jboss.as.messaging] (MSC service thread 1-8) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/TestQ

                                16:57:37,973 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-5) trying to deploy queue jms.topic.testTopic

                                16:57:38,039 INFO  [org.jboss.as.deployment.connector] (MSC service thread 1-2) JBAS010406: Registered connection factory java:/JmsXA

                                16:57:38,054 INFO  [org.hornetq.ra.HornetQResourceAdapter] (MSC service thread 1-2) HornetQ resource adaptor started

                                16:57:38,056 INFO  [org.jboss.as.connector.services.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-2) IJ020002: Deployed: file://RaActivatorhornetq-ra

                                16:57:38,059 INFO  [org.jboss.as.deployment.connector] (MSC service thread 1-7) JBAS010401: Bound JCA ConnectionFactory [java:/JmsXA]

                                16:57:38,120 INFO  [org.jboss.as.messaging] (MSC service thread 1-5) JBAS011601: Bound messaging object to jndi name java:/topic/test

                                16:57:40,469 INFO  [org.jboss.ws.common.management] (MSC service thread 1-6) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.1.0.Final

                                16:57:44,135 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-2) JBAS015012: Started FileSystemDeploymentService for directory C:\ApplicationServer\jboss-as-7.1.1.Final\standalone\deployments

                                16:57:44,205 INFO  [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on /127.0.0.1:9999

                                16:57:44,209 INFO  [org.jboss.as.remoting] (MSC service thread 1-7) JBAS017100: Listening on localhost/127.0.0.1:4447

                                16:57:44,259 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found RAS-ActionLauncher.war in deployment directory. To trigger deployment create a file called RAS-ActionLauncher.war.dodeploy

                                16:57:44,263 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found RAS-jBPMWorkflowLauncher.war in deployment directory. To trigger deployment create a file called RAS-jBPMWorkflowLauncher.war.dodeploy

                                16:57:44,266 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015003: Found DirectoryPoller.war in deployment directory. To trigger deployment create a file called DirectoryPoller.war.dodeploy

                                16:57:51,344 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "DirectoryPoller.war"

                                16:57:51,344 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015876: Starting deployment of "jbpm-gwt-console-server.war"

                                16:57:51,344 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "jbpm-gwt-console.war"

                                16:57:51,345 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "RAS-ActionLauncher.war"

                                16:57:51,345 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "jbpm-human-task-war.war"

                                16:57:51,344 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015876: Starting deployment of "drools-guvnor.war"

                                16:57:51,344 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "jbpm-form-builder.war"

                                16:57:51,344 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015876: Starting deployment of "designer.war"

                                16:57:51,351 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015876: Starting deployment of "RAS-jBPMWorkflowLauncher.war"

                                16:58:04,859 INFO  [eu.discoveryreply.xml.ActionLauncherHelper] (MSC service thread 1-2) trying to parse file: D:\Laura_delli_Paoli\lavoro\Progetti\Sorgenti\SorgentiRAS\RAS-jBPMWorkflowLauncher\config.MCF\action-launcher-config.xml

                                16:58:08,243 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/standalone/deployments/RAS-jBPMWorkflowLauncher.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:08,246 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/standalone/deployments/RAS-jBPMWorkflowLauncher.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:08,250 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry jaxb1-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/standalone/deployments/RAS-jBPMWorkflowLauncher.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:08,308 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/standalone/deployments/RAS-jBPMWorkflowLauncher.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:08,311 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry jaxb-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/standalone/deployments/RAS-jBPMWorkflowLauncher.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:08,369 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/standalone/deployments/RAS-jBPMWorkflowLauncher.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:08,376 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/standalone/deployments/RAS-jBPMWorkflowLauncher.war/WEB-INF/lib/mail-1.4.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:10,918 INFO  [eu.discoveryreply.applicationLayer.poller.DirectoryPollerManager] (MSC service thread 1-3) idpippo

                                16:58:11,140 INFO  [org.apache.commons.vfs2.impl.StandardFileSystemManager] (Thread-64) Using "C:\Users\LE3BF~1.DEL\AppData\Local\Temp\vfs_cache" as temporary files store.

                                16:58:11,928 INFO  [eu.discoveryreply.applicationLayer.jmsconsumer.RasMessageConsumer] (MSC service thread 1-2) JMSConsumer latencyPeriod: 10000

                                16:58:19,177 INFO  [org.jboss.web] (MSC service thread 1-2) JBAS018210: Registering web context: /RAS-ActionLauncher

                                16:58:19,177 INFO  [org.jboss.web] (MSC service thread 1-3) JBAS018210: Registering web context: /DirectoryPoller

                                16:58:19,212 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015893: Encountered invalid class name 'org.springframework.context.ApplicationContext,org.springframework.beans.BeansException' for service type 'org.apache.cxf.bus.factory'

                                16:58:19,217 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                16:58:19,221 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                16:58:19,224 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                16:58:19,546 WARN  [org.jboss.as.ee] (MSC service thread 1-2) JBAS011006: Not installing optional component org.apache.cxf.transport.http.Servlet3ContinuationProvider$Servlet3Continuation due to exception: org.jboss.as.server.deployment.DeploymentUnitProcessingException: JBAS011054: Could not find default constructor for class org.apache.cxf.transport.http.Servlet3ContinuationProvider$Servlet3Continuation

                                          at org.jboss.as.ee.component.ComponentDescription$DefaultComponentConfigurator.configure(ComponentDescription.java:606)

                                          at org.jboss.as.ee.component.deployers.EEModuleConfigurationProcessor.deploy(EEModuleConfigurationProcessor.java:81)

                                          at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:113) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]

                                          at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]

                                          at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]

                                          at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) [rt.jar:1.6.0_32]

                                          at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [rt.jar:1.6.0_32]

                                          at java.lang.Thread.run(Unknown Source) [rt.jar:1.6.0_32]

                                 

                                 

                                16:58:19,594 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)

                                16:58:23,924 INFO  [org.jboss.ws.cxf.metadata] (MSC service thread 1-2) JBWS024061: Adding service endpoint metadata: id=StartWkfWS

                                address=http://localhost:8080/RAS-jBPMWorkflowLauncher

                                implementor=eu.discoveryreply.serviceLayer.webServer.StartWkfWS

                                invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker

                                serviceName={http://webServer.serviceLayer.discoveryreply.eu/}StartWkfWS

                                portName={http://webServer.serviceLayer.discoveryreply.eu/}StartWkfWSPort

                                wsdlLocation=null

                                mtomEnabled=false

                                16:58:27,659 INFO  [org.jboss.errai.bus.server.service.bootstrap.OrderedBootstrap] (MSC service thread 1-1) Bootstrap Errai

                                16:58:27,670 INFO  [org.jboss.errai.bus.server.service.bootstrap.DefaultComponents] (MSC service thread 1-1) using dispatcher implementation: org.jboss.errai.bus.server.AsyncDispatcher

                                16:58:27,789 INFO  [org.jboss.errai.bus.server.WorkerFactory] (MSC service thread 1-1) initializing async worker pools (poolSize: 5; workerTimeout: 5000)

                                16:58:27,793 INFO  [org.jboss.errai.bus.server.WorkerFactory] (MSC service thread 1-1) starting worker pool.

                                16:58:27,797 INFO  [org.jboss.errai.bus.server.service.bootstrap.DefaultComponents] (MSC service thread 1-1) using session provider implementation: org.jboss.errai.bus.server.HttpSessionProvider

                                16:58:27,810 INFO  [org.jboss.errai.bus.server.service.bootstrap.LoadExtensions] (MSC service thread 1-1) beging searching for Errai extensions ...

                                16:58:27,815 INFO  [org.jboss.errai.bus.server.service.bootstrap.LoadExtensions] (MSC service thread 1-1) added extension binding: org.jboss.errai.bus.client.framework.ModelAdapter

                                16:58:27,839 INFO  [org.jboss.errai.bus.server.service.bootstrap.LoadExtensions] (MSC service thread 1-1) total extension binding: 1

                                16:58:29,372 INFO  [org.jboss.errai.bus.server.service.bootstrap.BootstrapContext] (MSC service thread 1-1) Running deferred bootstrap tasks ...

                                16:58:29,374 INFO  [org.jboss.errai.bus.server.service.bootstrap.OrderedBootstrap] (MSC service thread 1-1) Bootstrap complete. Ready to rumble!

                                16:58:29,378 INFO  [org.jboss.web] (MSC service thread 1-1) JBAS018210: Registering web context: /jbpm-console

                                16:58:48,494 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,497 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,501 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,504 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb1-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,508 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,511 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,514 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,517 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,520 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-human-task-war.war/WEB-INF/lib/mail-1.4.jar"  does not point to a valid jar for a Class-Path reference.

                                16:58:48,558 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'org.springframework.context.ApplicationContext,org.springframework.beans.BeansException' for service type 'org.apache.cxf.bus.factory'

                                16:58:48,562 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                16:58:48,566 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                16:58:48,629 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-1) JBAS018567: Deployment "deployment.jbpm-human-task-war.war" is using a private module ("org.jboss.netty:main") which may be changed or removed in future versions without notice.

                                16:58:49,034 INFO  [org.hibernate.cfg.annotations.Version] (MSC service thread 1-3) Hibernate Annotations 3.4.0.GA

                                16:58:49,795 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-3) Hibernate 3.3.2.GA

                                16:58:49,799 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-3) hibernate.properties not found

                                16:58:49,802 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-3) Bytecode provider name : javassist

                                16:58:50,763 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-3) using JDK 1.4 java.sql.Timestamp handling

                                16:58:50,873 INFO  [org.hibernate.annotations.common.Version] (MSC service thread 1-3) Hibernate Commons Annotations 3.1.0.GA

                                16:58:50,878 INFO  [org.hibernate.ejb.Version] (MSC service thread 1-3) Hibernate EntityManager 3.4.0.GA

                                16:59:02,097 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry avalon-framework-4.2.0.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,099 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry batik-all-1.7.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,101 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry commons-io-1.3.1.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,105 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry serializer-2.7.0.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,107 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry servlet-2.2.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,109 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xalan-2.7.0.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,112 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xercesImpl-2.7.1.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,115 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xml-apis-ext-1.3.04.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,117 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xmlgraphics-commons-1.3.1.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,118 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry fop-hyph.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,121 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jai_codec.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,124 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jai_core.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,127 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jai_imageio.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,130 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jimi-1.0.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,133 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xmlunit1.0.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,136 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,138 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,139 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,141 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jaxb1-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,143 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jaxb-xjc-2.1.13.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,145 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jaxb-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jaxb-xjc-2.1.13.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,147 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jaxb-xjc-2.1.13.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,149 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jaxb-xjc-2.1.13.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,152 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xml-apis-1.0.b2.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jbpmmigration-0.11.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,155 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry commons-lang-2.6.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jbpmmigration-0.11.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,157 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry commons-io-2.1.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jbpmmigration-0.11.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,160 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry log4j-1.2.16.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/jbpmmigration-0.11.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,165 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/mail-1.4.1.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,170 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xml-apis.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/serializer-2.7.1.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,174 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xercesImpl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,176 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry xml-apis.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,178 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) Class Path entry serializer.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/designer.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference.

                                16:59:02,502 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015893: Encountered invalid class name 'org.springframework.context.ApplicationContext,org.springframework.beans.BeansException' for service type 'org.apache.cxf.bus.factory'

                                16:59:02,507 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                16:59:02,716 WARN  [org.jboss.as.ee] (MSC service thread 1-4) JBAS011006: Not installing optional component org.apache.cxf.transport.http.Servlet3ContinuationProvider$Servlet3Continuation due to exception: org.jboss.as.server.deployment.DeploymentUnitProcessingException: JBAS011054: Could not find default constructor for class org.apache.cxf.transport.http.Servlet3ContinuationProvider$Servlet3Continuation

                                          at org.jboss.as.ee.component.ComponentDescription$DefaultComponentConfigurator.configure(ComponentDescription.java:606)

                                          at org.jboss.as.ee.component.deployers.EEModuleConfigurationProcessor.deploy(EEModuleConfigurationProcessor.java:81)

                                          at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:113) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]

                                          at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]

                                          at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]

                                          at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) [rt.jar:1.6.0_32]

                                          at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [rt.jar:1.6.0_32]

                                          at java.lang.Thread.run(Unknown Source) [rt.jar:1.6.0_32]

                                 

                                 

                                16:59:06,470 INFO  [org.jboss.web] (MSC service thread 1-1) JBAS018210: Registering web context: /designer

                                16:59:18,084 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(6) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:20,227 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(7) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:22,380 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(8) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:24,483 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(9) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:26,650 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(10) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:28,744 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(12) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:30,868 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(13) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:31,588 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-2) Creating Service {http://webServer.serviceLayer.discoveryreply.eu/}StartWkfWS from class eu.discoveryreply.serviceLayer.webServer.StartWkfInterface

                                16:59:33,060 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(14) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:35,185 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(15) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:37,306 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(16) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:39,427 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(17) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:41,550 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(18) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:43,656 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(19) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:45,868 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(20) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:47,992 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(21) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:50,101 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(22) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:52,238 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(23) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:54,411 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(24) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:56,590 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(25) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                16:59:58,692 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(26) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:00,380 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-2) Setting the server's publish address to be http://localhost:8080/RAS-jBPMWorkflowLauncher

                                17:00:00,800 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(27) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:03,030 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(28) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:05,122 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(29) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:07,224 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(30) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:08,380 INFO  [org.jboss.ws.cxf.deployment] (MSC service thread 1-2) JBWS024074: WSDL published to: file:/C:/ApplicationServer/jboss-as-7.1.1.Final/standalone/data/wsdl/RAS-jBPMWorkflowLauncher.war/StartWkfWS.wsdl

                                17:00:09,344 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(31) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:09,359 INFO  [org.jboss.as.webservices] (MSC service thread 1-4) JBAS015539: Starting service jboss.ws.port-component-link

                                17:00:09,362 INFO  [org.jboss.as.webservices] (MSC service thread 1-4) JBAS015539: Starting service jboss.ws.endpoint."RAS-jBPMWorkflowLauncher.war".StartWkfWS

                                17:00:09,460 INFO  [org.jboss.ws.common.management] (MSC service thread 1-4) JBWS022050: Endpoint registered: jboss.ws:context=RAS-jBPMWorkflowLauncher,endpoint=StartWkfWS

                                17:00:09,776 INFO  [org.jboss.web] (MSC service thread 1-6) JBAS018210: Registering web context: /RAS-jBPMWorkflowLauncher

                                17:00:11,470 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(32) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:13,633 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(33) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:15,797 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(34) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:17,919 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(35) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:20,042 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(36) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:22,147 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(37) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:24,274 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(38) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:26,384 WARN  [org.hibernate.ejb.packaging.PersistenceXmlLoader] (MSC service thread 1-3) Warning parsing XML: XML InputStream(41) schema_reference.4: Failed to read schema document 'http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

                                17:00:26,419 INFO  [org.hibernate.cfg.Configuration] (MSC service thread 1-3) Reading mappings from resource : META-INF/Taskorm-JPA2.xml

                                17:00:30,977 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsBusinessAdministrator => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity businessAdministrator where t.archived = 0 and businessAdministrator.id = :userId and businessAdministrator in elements ( t.peopleAssignments.businessAdministrators ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:30,984 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsExcludedOwner => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity excludedOwners where t.archived = 0 and excludedOwners.id = :userId and excludedOwners in elements ( t.peopleAssignments.excludedOwners ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:30,993 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsPotentialOwner => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity potentialOwners where t.archived = 0 and potentialOwners.id = :userId and potentialOwners in elements ( t.peopleAssignments.potentialOwners ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in ('Created', 'Ready', 'Reserved', 'InProgress', 'Suspended') and t.taskData.expirationTime is null

                                17:00:31,002 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsPotentialOwnerByStatus => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity potentialOwners where t.archived = 0 and potentialOwners.id = :userId and potentialOwners in elements ( t.peopleAssignments.potentialOwners ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in (:status) and t.taskData.expirationTime is null

                                17:00:31,009 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsPotentialOwnerWithGroups => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity potentialOwners where t.archived = 0 and ( potentialOwners.id = :userId or potentialOwners.id in (:groupIds) ) and potentialOwners in elements ( t.peopleAssignments.potentialOwners ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in ('Created', 'Ready', 'Reserved', 'InProgress', 'Suspended') and t.taskData.expirationTime is null

                                17:00:31,016 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsPotentialOwnerByStatusWithGroups => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity potentialOwners where t.archived = 0 and ( potentialOwners.id = :userId or potentialOwners.id in (:groupIds) ) and potentialOwners in elements ( t.peopleAssignments.potentialOwners ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in (:status) and t.taskData.expirationTime is null

                                17:00:31,025 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsPotentialOwnerByGroup => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity potentialOwners where t.archived = 0 and potentialOwners.id = :groupId and potentialOwners in elements ( t.peopleAssignments.potentialOwners ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in ('Created', 'Ready', 'Reserved', 'InProgress', 'Suspended') and t.taskData.expirationTime is null

                                17:00:31,034 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: SubTasksAssignedAsPotentialOwner => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity potentialOwners where t.archived = 0 and t.taskData.parentId = :parentId and (potentialOwners.id = :userId or potentialOwners.id in (:groupIds)) and potentialOwners in elements ( t.peopleAssignments.potentialOwners ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in ('Created', 'Ready', 'Reserved', 'InProgress', 'Suspended') and t.taskData.expirationTime is null

                                17:00:31,046 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: GetSubTasksByParentTaskId => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name where t.archived = 0 and t.taskData.parentId = :parentId and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in ('Created', 'Ready', 'Reserved', 'InProgress', 'Suspended') and t.taskData.expirationTime is null

                                17:00:31,055 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsRecipient => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity recipients where t.archived = 0 and recipients.id = :userId and recipients in elements ( t.peopleAssignments.recipients ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:31,065 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsTaskInitiator => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity taskInitiator where t.archived = 0 and taskInitiator.id = :userId and taskInitiator = t.peopleAssignments.taskInitiator and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:31,072 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksAssignedAsTaskStakeholder => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name, OrganizationalEntity taskStakeholder where t.archived = 0 and taskStakeholder.id = :userId and taskStakeholder in elements ( t.peopleAssignments.taskStakeholders ) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:31,081 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksOwned => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name where t.archived = 0 and t.taskData.actualOwner.id = :userId and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:31,088 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksByStatus => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name where t.archived = 0 and t.taskData.status = :status and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:31,098 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksByStatusByProcessId => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.actualOwner as actualOwner left join t.taskData.createdBy as createdBy left join t.subjects as subject left join t.descriptions as description left join t.names as name where t.archived = 0 and t.taskData.processInstanceId = :processInstanceId and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in (:status) and t.taskData.expirationTime is null

                                17:00:31,107 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksByStatusByProcessIdByTaskName => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.actualOwner as actualOwner left join t.taskData.createdBy as createdBy left join t.subjects as subject left join t.descriptions as description left join t.names as name where t.archived = 0 and t.taskData.processInstanceId = :processInstanceId and name.shortText = :taskName and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.status in (:status) and t.taskData.expirationTime is null

                                17:00:31,121 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksByStatusSince => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name where t.archived = 0 and t.taskData.status = :status and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null and t.taskData.activationTime < :since

                                17:00:31,131 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: ArchivedTasks => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name where t.archived = 1 and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:31,139 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TasksOwnedWithParticularStatus => select new org.jbpm.task.query.TaskSummary( t.id, t.taskData.processInstanceId, name.text, subject.text, description.text, t.taskData.status, t.priority, t.taskData.skipable, actualOwner, createdBy, t.taskData.createdOn, t.taskData.activationTime, t.taskData.expirationTime, t.taskData.processId, t.taskData.processSessionId) from Task t left join t.taskData.createdBy as createdBy left join t.taskData.actualOwner as actualOwner left join t.subjects as subject left join t.descriptions as description left join t.names as name where t.taskData.actualOwner.id = :userId and t.taskData.status in (:status) and ( name.language = :language or t.names.size = 0 ) and ( subject.language = :language or t.subjects.size = 0 ) and ( description.language = :language or t.descriptions.size = 0 ) and t.taskData.expirationTime is null

                                17:00:31,151 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: UnescalatedDeadlines => select new org.jbpm.task.query.DeadlineSummary( t.id, d.id, d.date) from Task t, Deadline d where t.archived = 0 and (d in elements( t.deadlines.startDeadlines ) or d in elements( t.deadlines.endDeadlines ) ) and d.escalated = 0 order by d.date

                                17:00:31,154 INFO  [org.hibernate.cfg.annotations.QueryBinder] (MSC service thread 1-3) Binding Named query: TaskByWorkItemId => select t from Task t where t.archived = 0 and t.taskData.workItemId = :workItemId

                                17:00:31,160 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Attachment

                                17:00:31,655 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.Attachment on table Attachment

                                17:00:32,261 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.BooleanExpression

                                17:00:32,263 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.BooleanExpression on table BooleanExpression

                                17:00:32,889 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Comment

                                17:00:32,891 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.Comment on table task_comment

                                17:00:32,900 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Content

                                17:00:32,902 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.Content on table Content

                                17:00:32,971 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Deadline

                                17:00:32,973 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.Deadline on table Deadline

                                17:00:33,379 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Notification

                                17:00:33,380 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.Notification on table Notification

                                17:00:37,113 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.EmailNotification

                                17:00:37,720 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.EmailNotificationHeader

                                17:00:37,721 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.EmailNotificationHeader on table email_header

                                17:00:37,726 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Escalation

                                17:00:37,728 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.Escalation on table Escalation

                                17:00:37,732 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.OrganizationalEntity

                                17:00:37,734 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.OrganizationalEntity on table OrganizationalEntity

                                17:00:37,736 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Group

                                17:00:37,738 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.I18NText

                                17:00:37,740 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.I18NText on table I18NText

                                17:00:37,745 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.SubTasksStrategy

                                17:00:37,747 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.SubTasksStrategy on table SubTasksStrategy

                                17:00:37,754 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.OnAllSubTasksEndParentEndStrategy

                                17:00:37,757 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.OnParentAbortAllSubTasksEndStrategy

                                17:00:37,760 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Reassignment

                                17:00:37,762 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.Reassignment on table Reassignment

                                17:00:37,769 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.Task

                                17:00:37,770 INFO  [org.hibernate.cfg.annotations.EntityBinder] (MSC service thread 1-3) Bind entity org.jbpm.task.Task on table Task

                                17:00:37,810 INFO  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-3) Binding entity from annotated class: org.jbpm.task.User

                                17:00:37,819 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Task.taskData.comments -> task_comment

                                17:00:37,822 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Task.taskData.attachments -> Attachment

                                17:00:37,829 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Task.subjects -> I18NText

                                17:00:37,831 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Task.subTaskStrategies -> SubTasksStrategy

                                17:00:37,834 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Task.names -> I18NText

                                17:00:37,836 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Task.descriptions -> I18NText

                                17:00:37,838 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Task.deadlines.startDeadlines -> Deadline

                                17:00:37,844 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Task.deadlines.endDeadlines -> Deadline

                                17:00:37,847 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Reassignment.documentation -> I18NText

                                17:00:37,849 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Escalation.reassignments -> Reassignment

                                17:00:37,851 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Escalation.notifications -> Notification

                                17:00:37,853 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Escalation.constraints -> BooleanExpression

                                17:00:38,044 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Notification.subjects -> I18NText

                                17:00:38,045 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Notification.names -> I18NText

                                17:00:38,046 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Notification.documentation -> I18NText

                                17:00:38,047 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Notification.descriptions -> I18NText

                                17:00:38,049 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Deadline.escalations -> Escalation

                                17:00:38,050 INFO  [org.hibernate.cfg.annotations.CollectionBinder] (MSC service thread 1-3) Mapping collection: org.jbpm.task.Deadline.documentation -> I18NText

                                17:00:38,051 INFO  [org.hibernate.cfg.AnnotationConfiguration] (MSC service thread 1-3) Hibernate Validator not found: ignoring

                                17:00:39,306 INFO  [org.hibernate.cfg.search.HibernateSearchEventListenerRegister] (MSC service thread 1-3) Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.

                                17:00:41,389 INFO  [org.hibernate.util.NamingHelper] (MSC service thread 1-3) JNDI InitialContext properties:{}

                                17:00:41,391 INFO  [org.hibernate.connection.DatasourceConnectionProvider] (MSC service thread 1-3) Using datasource: java:/jdbc/jbpm-ds

                                17:00:49,289 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) RDBMS: MySQL, version: 5.1.66

                                17:00:49,290 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.0.8 ( Revision: ${svn.Revision} )

                                17:00:52,804 INFO  [org.hibernate.dialect.Dialect] (MSC service thread 1-3) Using dialect: org.hibernate.dialect.MySQLDialect

                                17:00:53,106 INFO  [org.hibernate.transaction.TransactionFactoryFactory] (MSC service thread 1-3) Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory

                                17:00:53,242 INFO  [org.hibernate.transaction.TransactionManagerLookupFactory] (MSC service thread 1-3) instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup

                                17:00:53,284 INFO  [org.hibernate.transaction.TransactionManagerLookupFactory] (MSC service thread 1-3) instantiated TransactionManagerLookup

                                17:00:53,287 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Automatic flush during beforeCompletion(): disabled

                                17:00:53,289 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Automatic session close at end of transaction: disabled

                                17:00:53,290 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) JDBC batch size: 15

                                17:00:53,291 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) JDBC batch updates for versioned data: disabled

                                17:00:53,294 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Scrollable result sets: enabled

                                17:00:53,295 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) JDBC3 getGeneratedKeys(): enabled

                                17:00:53,297 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Connection release mode: auto

                                17:00:53,385 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Maximum outer join fetch depth: 3

                                17:00:53,387 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Default batch fetch size: 1

                                17:00:53,389 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Generate SQL with comments: disabled

                                17:00:53,390 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Order SQL updates by primary key: disabled

                                17:00:53,392 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Order SQL inserts for batching: disabled

                                17:00:53,393 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory

                                17:00:53,448 INFO  [org.hibernate.hql.ast.ASTQueryTranslatorFactory] (MSC service thread 1-3) Using ASTQueryTranslatorFactory

                                17:00:53,449 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Query language substitutions: {}

                                17:00:53,451 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) JPA-QL strict compliance: enabled

                                17:00:53,452 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Second-level cache: enabled

                                17:00:53,458 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Query cache: disabled

                                17:00:53,459 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory

                                17:00:53,461 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Optimize cache for minimal puts: disabled

                                17:00:53,463 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Structured second-level cache entries: disabled

                                17:00:53,545 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Statistics: disabled

                                17:00:53,546 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Deleted entity synthetic identifier rollback: disabled

                                17:00:53,548 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Default entity-mode: pojo

                                17:00:53,549 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-3) Named query checking : enabled

                                17:00:54,335 INFO  [org.hibernate.impl.SessionFactoryImpl] (MSC service thread 1-3) building session factory

                                17:00:59,556 INFO  [org.hibernate.impl.SessionFactoryObjectFactory] (MSC service thread 1-3) Not binding factory to JNDI, no JNDI name configured

                                17:00:59,869 INFO  [org.hibernate.tool.hbm2ddl.SchemaUpdate] (MSC service thread 1-3) Running hbm2ddl schema update

                                17:00:59,871 INFO  [org.hibernate.tool.hbm2ddl.SchemaUpdate] (MSC service thread 1-3) fetching database metadata

                                17:00:59,960 INFO  [org.hibernate.tool.hbm2ddl.SchemaUpdate] (MSC service thread 1-3) updating schema

                                17:01:00,014 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Attachment

                                17:01:00,016 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [id, attachmentcontentid, taskdata_attachments_id, attachment_size, attachedby_id, name, attachedat, contenttype, accesstype]

                                17:01:00,018 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,019 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [primary, fk1c93543f21826d9, fk1c935438ef5f064]

                                17:01:00,028 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.BooleanExpression

                                17:01:00,030 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [expression, id, escalation_constraints_id, type]

                                17:01:00,031 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,032 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fke3d208c0afb75f7d, primary]

                                17:01:00,040 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Content

                                17:01:00,042 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [content, id]

                                17:01:00,043 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,044 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [primary]

                                17:01:00,055 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Deadline

                                17:01:00,056 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [id, escalated, deadlines_startdeadline_id, deadlines_enddeadline_id, deadline_date]

                                17:01:00,058 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,059 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk21df3e7827abeb8a, primary, fk21df3e78684baca3]

                                17:01:00,067 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Delegation_delegates

                                17:01:00,069 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,070 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,071 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk47485d5736b2f154, fk47485d572c122ed2]

                                17:01:00,079 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Escalation

                                17:01:00,080 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [id, deadline_escalation_id, name]

                                17:01:00,082 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,083 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [primary, fk67b2c6b5c7a04c70]

                                17:01:00,096 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.I18NText

                                17:01:00,097 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [text, notification_names_id, notification_subjects_id, task_descriptions_id, id, task_names_id, notification_descriptions_id, reassignment_documentation_id, deadline_documentation_id, language, shorttext, notification_documentation_id, task_subjects_id]

                                17:01:00,100 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,102 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk2349686b98b62b, fk2349686b3330f6d9, fk2349686b5eebb6d9, primary, fk2349686bf952cee4, fk2349686bd488ceeb, fk2349686bb2fa6b18, fk2349686b8046a239, fk2349686b69b21ee8, fk2349686b2162dfb4]

                                17:01:00,112 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Notification

                                17:01:00,113 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [id, escalation_notifications_id, priority, dtype]

                                17:01:00,116 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,117 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [primary, fk2d45dd0b3e0890b]

                                17:01:00,126 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Notification_BAs

                                17:01:00,127 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,128 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,130 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk2dd68ee09c76eaba, fk2dd68ee02c122ed2]

                                17:01:00,138 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Notification_Recipients

                                17:01:00,139 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,141 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,142 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk98fd214e9c76eaba, fk98fd214e2c122ed2]

                                17:01:00,151 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Notification_email_header

                                17:01:00,153 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [emailheaders_id, notification_id, mapkey]

                                17:01:00,154 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,156 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fkf30fe34430be501c, emailheaders_id, primary, fkf30fe3441f7b912a]

                                17:01:00,164 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.OrganizationalEntity

                                17:01:00,165 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [id, dtype]

                                17:01:00,167 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,168 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [primary]

                                17:01:00,176 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.PeopleAssignments_BAs

                                17:01:00,177 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,179 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,180 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk9d8cf4ec36b2f154, fk9d8cf4ec2c122ed2]

                                17:01:00,210 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.PeopleAssignments_ExclOwners

                                17:01:00,211 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,213 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,214 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fkc77b97e436b2f154, fkc77b97e42c122ed2]

                                17:01:00,222 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.PeopleAssignments_PotOwners

                                17:01:00,224 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,225 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,226 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk1ee418d36b2f154, fk1ee418d2c122ed2]

                                17:01:00,236 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.PeopleAssignments_Recipients

                                17:01:00,238 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,239 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,240 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fkc6f615c22c122ed2, fkc6f615c236b2f154]

                                17:01:00,255 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.PeopleAssignments_Stakeholders

                                17:01:00,257 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,258 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,259 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk482f79d536b2f154, fk482f79d52c122ed2]

                                17:01:00,267 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Reassignment

                                17:01:00,269 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [escalation_reassignments_id, id]

                                17:01:00,270 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,271 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk724d0560a5c17ee0, primary]

                                17:01:00,279 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Reassignment_potentialOwners

                                17:01:00,280 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [task_id, entity_id]

                                17:01:00,281 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,283 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk90b59cffe17e130f, fk90b59cff2c122ed2]

                                17:01:00,300 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.SubTasksStrategy

                                17:01:00,302 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [id, name, task_id, dtype]

                                17:01:00,303 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,304 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [primary, fkde5df2e136b2f154]

                                17:01:00,320 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.Task

                                17:01:00,321 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [outputcontentid, parentid, optlock, expirationtime, previousstatus, id, faultname, createdby_id, archived, skipable, priority, faulttype, taskinitiator_id, documentcontentid, faultaccesstype, outputaccesstype, allowedtodelegate, status, completedon, documentaccesstype, outputtype, createdon, faultcontentid, activationtime, processinstanceid, processsessionid, actualowner_id, workitemid, documenttype, processid]

                                17:01:00,327 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,328 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk27a9a5f213f8b5, primary, fk27a9a56ce1ef3a, fk27a9a59e619a0]

                                17:01:00,338 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.email_header

                                17:01:00,339 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [id, body, replytoaddress, subject, fromaddress, language]

                                17:01:00,341 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,342 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [primary]

                                17:01:00,350 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) table found: jbpm5.task_comment

                                17:01:00,351 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) columns: [id, taskdata_comments_id, text, addedat, addedby_id]

                                17:01:00,353 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) foreign keys: []

                                17:01:00,354 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-3) indexes: [fk61f475a52ff04688, primary, fk61f475a5b35e68f5]

                                17:01:00,357 INFO  [org.hibernate.tool.hbm2ddl.SchemaUpdate] (MSC service thread 1-3) schema update complete

                                17:01:00,360 INFO  [org.hibernate.util.NamingHelper] (MSC service thread 1-3) JNDI InitialContext properties:{}

                                17:01:03,590 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_cs.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,595 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_de_DE.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,598 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_es.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,601 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_fr.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,603 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_hu.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,607 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_it.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,609 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_ja_JP.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,612 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_ko_KR.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,615 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_pl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,645 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_pt_BR.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,648 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_ru.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,651 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_zh_CN.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,654 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry derbyLocale_zh_TW.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,662 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,666 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,669 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,672 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry jaxb1-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,674 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,677 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry jaxb-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,679 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,681 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:03,688 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-gwt-console-server.war/WEB-INF/lib/mail-1.4.jar"  does not point to a valid jar for a Class-Path reference.

                                17:01:04,212 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015893: Encountered invalid class name 'org.springframework.context.ApplicationContext,org.springframework.beans.BeansException' for service type 'org.apache.cxf.bus.factory'

                                17:01:04,220 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                17:01:04,226 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                17:01:07,160 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-6) JBAS018567: Deployment "deployment.jbpm-gwt-console-server.war" is using a private module ("org.jboss.netty:main") which may be changed or removed in future versions without notice.

                                17:01:07,210 WARN  [org.jboss.as.ee] (MSC service thread 1-6) JBAS011006: Not installing optional component org.apache.cxf.transport.http.Servlet3ContinuationProvider$Servlet3Continuation due to exception: org.jboss.as.server.deployment.DeploymentUnitProcessingException: JBAS011054: Could not find default constructor for class org.apache.cxf.transport.http.Servlet3ContinuationProvider$Servlet3Continuation

                                          at org.jboss.as.ee.component.ComponentDescription$DefaultComponentConfigurator.configure(ComponentDescription.java:606)

                                          at org.jboss.as.ee.component.deployers.EEModuleConfigurationProcessor.deploy(EEModuleConfigurationProcessor.java:81)

                                          at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:113) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]

                                          at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]

                                          at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]

                                          at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) [rt.jar:1.6.0_32]

                                          at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [rt.jar:1.6.0_32]

                                          at java.lang.Thread.run(Unknown Source) [rt.jar:1.6.0_32]

                                 

                                 

                                17:01:07,226 WARN  [org.jboss.as.ee] (MSC service thread 1-6) JBAS011006: Not installing optional component org.jboss.errai.bus.server.servlet.StandardAsyncServlet$1 due to exception: org.jboss.as.server.deployment.DeploymentUnitProcessingException: JBAS011054: Could not find default constructor for class org.jboss.errai.bus.server.servlet.StandardAsyncServlet$1

                                          at org.jboss.as.ee.component.ComponentDescription$DefaultComponentConfigurator.configure(ComponentDescription.java:606)

                                          at org.jboss.as.ee.component.deployers.EEModuleConfigurationProcessor.deploy(EEModuleConfigurationProcessor.java:81)

                                          at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:113) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]

                                          at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]

                                          at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]

                                          at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) [rt.jar:1.6.0_32]

                                          at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [rt.jar:1.6.0_32]

                                          at java.lang.Thread.run(Unknown Source) [rt.jar:1.6.0_32]

                                 

                                 

                                17:01:09,369 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Jane Austin already exists in Task Server

                                17:01:09,373 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User john already exists in Task Server

                                17:01:09,376 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Luke Cage already exists in Task Server

                                17:01:09,379 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User krisv already exists in Task Server

                                17:01:09,382 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Steve Rogers already exists in Task Server

                                17:01:09,386 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User sales-rep already exists in Task Server

                                17:01:09,389 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Tony Stark already exists in Task Server

                                17:01:09,392 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Bruce Wayne already exists in Task Server

                                17:01:09,396 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Bobba Fet already exists in Task Server

                                17:01:09,399 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Peter Parker already exists in Task Server

                                17:01:09,402 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Elizabeth Windsor already exists in Task Server

                                17:01:09,406 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Dalai Lama already exists in Task Server

                                17:01:09,409 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Stuart Little already exists in Task Server

                                17:01:09,412 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Darth Vader already exists in Task Server

                                17:01:09,415 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Sly Stalone already exists in Task Server

                                17:01:09,419 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Christoper Columbus already exists in Task Server

                                17:01:09,422 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Administrator already exists in Task Server

                                17:01:09,425 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User Jabba Hutt already exists in Task Server

                                17:01:09,428 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) User mary already exists in Task Server

                                17:01:09,432 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) Group PM already exists in Task Server

                                17:01:09,436 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) Group sales already exists in Task Server

                                17:01:09,439 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) Group HR already exists in Task Server

                                17:01:09,442 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) Group Crusaders already exists in Task Server

                                17:01:09,446 WARN  [org.jbpm.task.service.TaskServiceSession] (MSC service thread 1-3) Group Knights Templer already exists in Task Server

                                17:01:09,455 INFO  [stdout] (MSC service thread 1-3) HornetQ Task service started correctly !

                                 

                                 

                                17:01:09,457 INFO  [stdout] (MSC service thread 1-3) HornetQ Task service running (host localhost port 5153) ...

                                 

                                 

                                17:01:09,463 INFO  [org.jbpm.task.identity.UserGroupCallbackManager] (MSC service thread 1-3) UserGroupCallback registered: org.jbpm.task.identity.DefaultUserGroupCallbackImpl

                                17:01:09,465 INFO  [stdout] (MSC service thread 1-3) Task service startup completed successfully !

                                 

                                 

                                17:01:09,468 INFO  [org.jboss.web] (MSC service thread 1-3) JBAS018210: Registering web context: /jbpm-human-task-war

                                17:01:11,180 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (Thread-69) live server is starting with configuration HornetQ Configuration (clustered=false,backup=false,sharedStore=true,journalDirectory=data/journal,bindingsDirectory=data/bindings,largeMessagesDirectory=data/largemessages,pagingDirectory=data/paging)

                                17:01:11,238 AVVERTENZA [org.hornetq.core.server.impl.HornetQServerImpl] (Thread-69) Security risk! It has been detected that the cluster admin user and password have not been changed from the installation default. Please see the HornetQ user guide, cluster chapter, for instructions on how to do this.

                                17:01:11,927 INFO  [org.hornetq.core.remoting.impl.netty.NettyAcceptor] (Thread-69) Started Netty Acceptor version 3.2.5.Final-a96d88c localhost:5153 for CORE protocol

                                17:01:11,929 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (Thread-69) Server is now live

                                17:01:11,931 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (Thread-69) HornetQ Server version 2.2.10.Final (HQ_2_2_10_FINAL_AS7, 122) [3d96226c-3df4-11e2-9871-1c7508415871]) started

                                17:01:12,641 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) JBAS010403: Deploying JDBC-compliant driver class org.apache.derby.jdbc.AutoloadedDriver (version 10.5)

                                17:01:12,644 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)

                                17:01:14,027 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Deploying javax.ws.rs.core.Application: class org.jboss.bpm.console.server.ConsoleServerApplication

                                17:01:14,035 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.console.server.ProcessMgmtFacade from Application javax.ws.rs.core.Application

                                17:01:14,038 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.console.server.FormProcessingFacade from Application javax.ws.rs.core.Application

                                17:01:14,041 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.console.server.ProcessHistoryFacade from Application javax.ws.rs.core.Application

                                17:01:14,043 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.report.ReportFacade from Application javax.ws.rs.core.Application

                                17:01:14,045 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.console.server.UserMgmtFacade from Application javax.ws.rs.core.Application

                                17:01:14,048 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.console.server.TaskMgmtFacade from Application javax.ws.rs.core.Application

                                17:01:14,050 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.console.server.InfoFacade from Application javax.ws.rs.core.Application

                                17:01:14,051 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.console.server.TaskListFacade from Application javax.ws.rs.core.Application

                                17:01:14,054 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (MSC service thread 1-1) Adding singleton resource org.jboss.bpm.console.server.EngineFacade from Application javax.ws.rs.core.Application

                                17:01:14,967 INFO  [org.jboss.web] (MSC service thread 1-1) JBAS018210: Registering web context: /gwt-console-server

                                17:02:12,142 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_cs.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,145 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_de_DE.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,147 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_es.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,148 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_fr.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,150 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_hu.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,152 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_it.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,155 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_ja_JP.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,158 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_ko_KR.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,162 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_pl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,165 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_pt_BR.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,168 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_ru.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,171 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_zh_CN.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,174 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry derbyLocale_zh_TW.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,179 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry iText-toolbox.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/itext-2.1.2.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,182 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry iText-toolbox-2.1.2.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/itext-2.1.2.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,186 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,279 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,282 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,283 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jaxb1-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,287 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.0EA3.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,290 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jaxb-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.0EA3.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,293 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.0EA3.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,297 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.0EA3.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,300 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,302 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jaxb-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,304 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,306 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,310 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-5) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/mail-1.4.jar"  does not point to a valid jar for a Class-Path reference.

                                17:02:12,808 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.ConfigurableArchiveImpl' for service type 'org.jboss.shrinkwrap.spi.Configurable'

                                17:02:12,810 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.GenericArchiveImpl' for service type 'org.jboss.shrinkwrap.api.GenericArchive'

                                17:02:12,811 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.jar' for service type 'org.jboss.shrinkwrap.api.GenericArchive'

                                17:02:12,813 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'archiveFormat=UNKNOWN' for service type 'org.jboss.shrinkwrap.api.GenericArchive'

                                17:02:12,814 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.serialization.ZipSerializableViewImpl' for service type 'org.jboss.shrinkwrap.api.serialization.SerializableView'

                                17:02:12,816 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.spec.JavaArchiveImpl' for service type 'org.jboss.shrinkwrap.api.spec.JavaArchive'

                                17:02:12,818 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.jar' for service type 'org.jboss.shrinkwrap.api.spec.JavaArchive'

                                17:02:12,821 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'archiveFormat=ZIP' for service type 'org.jboss.shrinkwrap.api.spec.JavaArchive'

                                17:02:12,824 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.exporter.tar.TarExporterImpl' for service type 'org.jboss.shrinkwrap.api.exporter.TarExporter'

                                17:02:12,827 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.tar' for service type 'org.jboss.shrinkwrap.api.exporter.TarExporter'

                                17:02:12,829 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.importer.zip.ZipImporterImpl' for service type 'org.jboss.shrinkwrap.api.importer.ZipImporter'

                                17:02:12,833 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.jar' for service type 'org.jboss.shrinkwrap.api.importer.ZipImporter'

                                17:02:12,836 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.importer.tar.TarImporterImpl' for service type 'org.jboss.shrinkwrap.api.importer.TarImporter'

                                17:02:12,839 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.tar' for service type 'org.jboss.shrinkwrap.api.importer.TarImporter'

                                17:02:12,841 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.spec.WebArchiveImpl' for service type 'org.jboss.shrinkwrap.api.spec.WebArchive'

                                17:02:12,843 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.war' for service type 'org.jboss.shrinkwrap.api.spec.WebArchive'

                                17:02:12,844 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'archiveFormat=ZIP' for service type 'org.jboss.shrinkwrap.api.spec.WebArchive'

                                17:02:12,846 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.exporter.tar.TarGzExporterImpl' for service type 'org.jboss.shrinkwrap.api.exporter.TarGzExporter'

                                17:02:12,848 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.tar.gz' for service type 'org.jboss.shrinkwrap.api.exporter.TarGzExporter'

                                17:02:12,850 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.serialization.ZipSerializableViewImpl' for service type 'org.jboss.shrinkwrap.api.serialization.ZipSerializableView'

                                17:02:12,852 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.importer.ExplodedImporterImpl' for service type 'org.jboss.shrinkwrap.api.importer.ExplodedImporter'

                                17:02:12,854 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.exporter.ExplodedExporterImpl' for service type 'org.jboss.shrinkwrap.api.exporter.ExplodedExporter'

                                17:02:12,856 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.spec.EnterpriseArchiveImpl' for service type 'org.jboss.shrinkwrap.api.spec.EnterpriseArchive'

                                17:02:12,858 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.ear' for service type 'org.jboss.shrinkwrap.api.spec.EnterpriseArchive'

                                17:02:12,860 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'archiveFormat=ZIP' for service type 'org.jboss.shrinkwrap.api.spec.EnterpriseArchive'

                                17:02:12,863 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.spec.ResourceAdapterArchiveImpl' for service type 'org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive'

                                17:02:12,866 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.rar' for service type 'org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive'

                                17:02:12,868 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'archiveFormat=ZIP' for service type 'org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive'

                                17:02:12,871 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.importer.tar.TarGzImporterImpl' for service type 'org.jboss.shrinkwrap.api.importer.TarGzImporter'

                                17:02:12,873 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'extension=.tar.gz' for service type 'org.jboss.shrinkwrap.api.importer.TarGzImporter'

                                17:02:12,875 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.exporter.zip.ZipExporterImpl' for service type 'org.jboss.shrinkwrap.api.exporter.ZipExporter'

                                17:02:12,878 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                17:02:16,388 INFO  [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016002: Processing weld deployment drools-guvnor.war

                                17:02:17,263 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) JBAS010403: Deploying JDBC-compliant driver class org.apache.derby.jdbc.AutoloadedDriver (version 10.5)

                                17:02:17,266 INFO  [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016005: Starting Services for CDI deployment: drools-guvnor.war

                                17:02:18,653 INFO  [org.jboss.weld.Version] (MSC service thread 1-2) WELD-000900 1.1.5 (AS71)

                                17:02:18,732 INFO  [org.jboss.weld.deployer] (MSC service thread 1-3) JBAS016008: Starting weld service for deployment drools-guvnor.war

                                17:02:24,008 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Solder Config XML provider starting...

                                17:02:24,011 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Loading XmlDocumentProvider: org.jboss.solder.config.xml.bootstrap.ResourceLoaderXmlDocumentProvider

                                17:02:24,023 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/beans.xml

                                17:02:24,062 WARN  [org.jboss.solder.config.xml.model.ModelBuilder] (MSC service thread 1-3) Solder Config could not resolve XML namspace for: {}

                                17:02:24,064 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/guvnor-repository-5.5.0.Final.jar/META-INF/beans.xml

                                17:02:24,068 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/seam-remoting-3.1.0.Final.jar/META-INF/beans.xml

                                17:02:24,072 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/seam-conversation-spi-3.0.0.Final.jar/META-INF/beans.xml

                                17:02:24,076 WARN  [org.jboss.solder.config.xml.model.ModelBuilder] (MSC service thread 1-3) Solder Config could not resolve XML namspace for: {}

                                17:02:24,077 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/seam-international-3.1.0.Final.jar/META-INF/beans.xml

                                17:02:24,080 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/seam-security-api-3.1.0.Final.jar/META-INF/beans.xml

                                17:02:24,083 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/guvnor-webapp-core-5.5.0.Final.jar/META-INF/beans.xml

                                17:02:24,086 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/seam-security-3.1.0.Final.jar/META-INF/beans.xml

                                17:02:24,089 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/seam-persistence-3.1.0.Final.jar/META-INF/beans.xml

                                17:02:24,094 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/seam-transaction-3.1.0.Final.jar/META-INF/beans.xml

                                17:02:24,098 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Reading XML file: vfs:/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/drools-guvnor.war/WEB-INF/lib/seam-international-api-3.1.0.Final.jar/META-INF/beans.xml

                                17:02:24,109 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Adding XML Defined Bean: org.drools.guvnor.server.repository.GuvnorBootstrapConfiguration

                                17:02:24,135 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Adding XML Defined Bean: org.jboss.seam.security.IdentityImpl

                                17:02:24,152 INFO  [org.jboss.solder.Version] (MSC service thread 1-3) Solder 3.1.1.Final (build id: 3.1.1.Final)

                                17:02:24,497 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.international.locale.LocaleConfiguration from being installed as bean due to @Veto annotation

                                17:02:27,112 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Preventing installation of default bean: org.jboss.seam.security.IdentityImpl

                                17:02:27,290 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.security.SecurityEventMessages from being installed as bean due to @Veto annotation

                                17:02:30,150 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.AssetServiceServlet from being installed as bean due to @Veto annotation

                                17:02:31,353 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.CategoryServiceServlet from being installed as bean due to @Veto annotation

                                17:02:31,563 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.ModuleServiceServlet from being installed as bean due to @Veto annotation

                                17:02:31,846 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.SecurityServiceServlet from being installed as bean due to @Veto annotation

                                17:02:32,472 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.RepositoryServiceServlet from being installed as bean due to @Veto annotation

                                17:02:32,793 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Preventing installation of default bean: org.drools.guvnor.server.repository.GuvnorBootstrapConfiguration

                                17:02:33,350 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.TestScenarioServiceServlet from being installed as bean due to @Veto annotation

                                17:02:33,425 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.SuggestionCompletionEngineServiceServlet from being installed as bean due to @Veto annotation

                                17:02:33,690 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.DroolsServiceServlet from being installed as bean due to @Veto annotation

                                17:02:33,749 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.WorkItemServiceServlet from being installed as bean due to @Veto annotation

                                17:02:33,874 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.drools.guvnor.server.simulation.SimulationTestServiceServlet from being installed as bean due to @Veto annotation

                                17:02:34,068 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.persistence.HibernatePersistenceProvider from being installed as bean due to @Veto annotation

                                17:02:34,099 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.persistence.hibernate.HibernateManagedSessionExtensionImpl from being installed as bean due to @Veto annotation

                                17:02:34,122 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.transaction.NoTransaction from being installed as bean due to @Veto annotation

                                17:02:34,128 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.transaction.UTTransaction from being installed as bean due to @Veto annotation

                                17:02:34,175 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.transaction.HibernateTransaction from being installed as bean due to @Veto annotation

                                17:02:34,192 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.transaction.SeSynchronizations from being installed as bean due to @Veto annotation

                                17:02:34,201 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.transaction.CMTTransaction from being installed as bean due to @Veto annotation

                                17:02:34,205 INFO  [org.jboss.solder.core.CoreExtension] (MSC service thread 1-3) Preventing class org.jboss.seam.transaction.EntityTransaction from being installed as bean due to @Veto annotation

                                17:02:34,574 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Wrapping InjectionTarget to set field values: org.jboss.seam.security.IdentityImpl

                                17:02:34,665 INFO  [org.jboss.seam.international.status.TypedStatusMessageBundleExtension] (MSC service thread 1-3) Add @MessageBundle to org.jboss.solder.reflection.annotated.AnnotationBuilder.messages injection point for the type: org.jboss.solder.support.SolderMessages

                                17:02:34,753 INFO  [org.jboss.seam.international.status.TypedStatusMessageBundleExtension] (MSC service thread 1-3) Add @MessageBundle to org.jboss.solder.reflection.annotated.AnnotatedTypeBuilder.messages injection point for the type: org.jboss.solder.support.SolderMessages

                                17:02:35,160 INFO  [org.jboss.solder.config.xml.bootstrap.XmlConfigExtension] (MSC service thread 1-3) Wrapping InjectionTarget to set field values: org.drools.guvnor.server.repository.GuvnorBootstrapConfiguration

                                17:02:35,622 INFO  [org.jboss.solder.exception.control.extension] (MSC service thread 1-3) Adding handler Qualifiers: [@javax.enterprise.inject.Any()] TraversalMode: BREADTH_FIRST Handles Type: class java.lang.Throwable Precedence: -100 [method] public org.jboss.seam.transaction.SimpleTransactionExceptionHandler.markTransactionRollback(CaughtException<Throwable>) to known handlers

                                17:02:36,809 INFO  [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-3) Initializing Mojarra 2.1.7-jbossorg-1 (20120227-1401) for context '/drools-guvnor'

                                17:02:57,721 INFO  [org.hibernate.validator.util.Version] (MSC service thread 1-3) Hibernate Validator 4.2.0.Final

                                17:03:02,964 INFO  [solder-servlet] (MSC service thread 1-3) Catch Integration for Servlets enabled

                                17:03:02,970 INFO  [org.jboss.web] (MSC service thread 1-3) JBAS018210: Registering web context: /drools-guvnor

                                17:03:28,279 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry iText-toolbox.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-form-builder.war/WEB-INF/lib/itext-2.1.2.jar"  does not point to a valid jar for a Class-Path reference.

                                17:03:28,281 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry iText-toolbox-2.1.2.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-form-builder.war/WEB-INF/lib/itext-2.1.2.jar"  does not point to a valid jar for a Class-Path reference.

                                17:03:28,283 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jaxb-api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-form-builder.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:03:28,296 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry activation.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-form-builder.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:03:28,306 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jsr173_1.0_api.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-form-builder.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:03:28,308 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jaxb1-impl.jar in "/C:/ApplicationServer/jboss-as-7.1.1.Final/bin/content/jbpm-form-builder.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference.

                                17:03:28,446 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory'

                                17:03:29,474 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/jbpm-form-builder]] (MSC service thread 1-5) Initializing Spring root WebApplicationContext

                                17:03:29,476 INFO  [org.springframework.web.context.ContextLoader] (MSC service thread 1-5) Root WebApplicationContext: initialization started

                                17:03:29,525 INFO  [org.springframework.web.context.support.XmlWebApplicationContext] (MSC service thread 1-5) Refreshing Root WebApplicationContext: startup date [Thu Dec 20 17:03:29 CET 2012]; root of context hierarchy

                                17:03:29,603 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-5) Loading XML bean definitions from ServletContext resource [/WEB-INF/springComponents.xml]

                                17:03:29,905 INFO  [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-5) Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@45e3546: defining beans [strategy,guvnorUrl,guvnorUser,guvnorPass,serviceFactory,guvnorFileService,guvnorFormService,guvnorTaskService,guvnorMenuService]; root of factory hierarchy

                                17:03:30,154 INFO  [org.springframework.web.context.ContextLoader] (MSC service thread 1-5) Root WebApplicationContext: initialization completed in 676 ms

                                17:03:30,163 INFO  [org.jboss.web] (MSC service thread 1-5) JBAS018210: Registering web context: /jbpm-form-builder

                                17:03:30,192 INFO  [org.jboss.as] (MSC service thread 1-5) JBAS015951: Admin console listening on http://127.0.0.1:9990

                                17:03:30,194 INFO  [org.jboss.as] (MSC service thread 1-5) JBAS015874: JBoss AS 7.1.1.Final "Brontes" started in 374023ms - Started 695 of 789 services (93 services are passive or on-demand)

                                17:03:30,382 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "RAS-jBPMWorkflowLauncher.war"

                                17:03:30,383 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "RAS-ActionLauncher.war"

                                17:03:30,384 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "jbpm-human-task-war.war"

                                17:03:30,385 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "jbpm-gwt-console.war"

                                17:03:30,386 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "jbpm-gwt-console-server.war"

                                17:03:30,387 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "jbpm-form-builder.war"

                                17:03:30,388 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "drools-guvnor.war"

                                17:03:30,390 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "DirectoryPoller.war"

                                17:03:30,391 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "designer.war"

                                • 13. Re: Missing jBPM libraries
                                  eaa

                                  In the log I'm not seeing hibernate trying to create SessionInfo or any of the non-task related tables. So, again, are you 100% sure you are using persistence unit 'org.jbpm.persistence.jpa' in you application? Are you (or spring, or whatever framework you may be using) creating an EntityManagerFactory based on that specific persistence unit?

                                  And, one more time, are you 100% sure about the fact of using the same data-source for the 2 persistence units you have?

                                   

                                  Best Regards,