13 Replies Latest reply on Dec 6, 2007 5:01 PM by chocopie

    JBoss + JBPM + Mysql - Deployment is not going through

    jitendrasupe

      I am new bee to JBPM. Trying to deploy the sample application given in the jbpm-jpdl-suite-3.2.1.

      I am following documentation given for jbpm-jpdl-suite-3.2.1 Getting started but getting following errors while starting the server from the folder "jbpm-jpdl-suite-3.2.1\jbpm-jpdl-3.2.1\server\bin" with command "run -c jbpm".


      2007-08-14 11:13:06,616 DEBUG [org.hibernate.loader.hql.QueryLoader] bindNamedParameters() Tue Aug 14 11:13:06 IST 2007 -> now [3]
      2007-08-14 11:13:06,616 DEBUG [org.hibernate.loader.hql.QueryLoader] bindNamedParameters() JbpmJobExector:172.17.225.114:1 -> lockOwner [2]
      2007-08-14 11:13:06,647 DEBUG [org.hibernate.jdbc.AbstractBatcher] about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
      2007-08-14 11:13:06,663 DEBUG [org.hibernate.util.JDBCExceptionReporter] could not execute query [select job0_.ID_ as ID1_26_, job0_.VERSION_ as VERSION3_26_, job0_.DUEDATE_ as DUEDATE4_26_, job0_.PROCESSINSTANCE_ as PROCESSI5_26_, job0_.TOKEN_ as TOKEN6_26_, job0_.TASKINSTANCE_ as TASKINST7_26_, job0_.ISSUSPENDED_ as ISSUSPEN8_26_, job0_.ISEXCLUSIVE_ as ISEXCLUS9_26_, job0_.LOCKOWNER_ as LOCKOWNER10_26_, job0_.LOCKTIME_ as LOCKTIME11_26_, job0_.EXCEPTION_ as EXCEPTION12_26_, job0_.RETRIES_ as RETRIES13_26_, job0_.NAME_ as NAME14_26_, job0_.REPEAT_ as REPEAT15_26_, job0_.TRANSITIONNAME_ as TRANSIT16_26_, job0_.ACTION_ as ACTION17_26_, job0_.GRAPHELEMENTTYPE_ as GRAPHEL18_26_, job0_.GRAPHELEMENT_ as GRAPHEL19_26_, job0_.NODE_ as NODE20_26_, job0_.CLASS_ as CLASS2_26_ from JBPM_JOB job0_ where (job0_.LOCKOWNER_ is null or job0_.LOCKOWNER_=?) and job0_.RETRIES_>0 and job0_.DUEDATE_<=? and job0_.ISSUSPENDED_<>1 order by job0_.DUEDATE_ asc]
      com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1 job0_.ID_ as ID1_26_, job0_.VERSION_ as VERSION3_26_, job0_.DUEDATE_ as DUEDAT' at line 1
      at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:936)
      at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2941)
      at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1623)
      at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1715)
      at com.mysql.jdbc.Connection.execSQL(Connection.java:3249)
      at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1268)
      at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1403)
      at org.jboss.resource.adapter.jdbc.CachedPreparedStatement.executeQuery(CachedPreparedStatement.java:90)
      at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:236)
      at org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:186)
      at org.hibernate.loader.Loader.getResultSet(Loader.java:1669)
      at org.hibernate.loader.Loader.doQuery(Loader.java:662)
      at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:224)
      at org.hibernate.loader.Loader.doList(Loader.java:2145)
      at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2029)
      at org.hibernate.loader.Loader.list(Loader.java:2024)
      at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:392)
      at org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:333)
      at org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java:172)
      at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1114)
      at org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
      at org.hibernate.impl.AbstractQueryImpl.uniqueResult(AbstractQueryImpl.java:756)
      at org.jbpm.db.JobSession.getFirstAcquirableJob(JobSession.java:40)
      at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:111)
      at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
      2007-08-14 11:13:06,663 WARN [org.hibernate.util.JDBCExceptionReporter] SQL Error: 1064, SQLState: 42000
      2007-08-14 11:13:06,663 ERROR [org.hibernate.util.JDBCExceptionReporter] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1 job0_.ID_ as ID1_26_, job0_.VERSION_ as VERSION3_26_, job0_.DUEDATE_ as DUEDAT' at line 1
      2007-08-14 11:13:06,663 ERROR [org.jbpm.db.JobSession] org.hibernate.exception.SQLGrammarException: could not execute query
      2007-08-14 11:13:06,663 DEBUG [org.jbpm.JbpmContext] closing JbpmContext
      2007-08-14 11:13:06,663 DEBUG [org.jbpm.svc.Services] closing service 'persistence': org.jbpm.persistence.db.DbPersistenceService@aa6635
      2007-08-14 11:13:06,663 DEBUG [org.jbpm.persistence.db.DbPersistenceService] committing hibernate transaction org.hibernate.transaction.JDBCTransaction@11d5566

      Here are configuration files I have changed for configuring Mysql DB

      --- hibernate.cfg --



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

      <!DOCTYPE hibernate-configuration PUBLIC
      "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
      "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

      <hibernate-configuration>
      <session-factory>

      <!-- mysql dialect -->
      org.hibernate.dialect.MySQLDialect
      <!-- JDBC connection properties (begin) -->
      com.mysql.jdbc.Driver
      jdbc:mysql://172.17.225.171:3306/jbpm_sample
      root
      password
      org.hibernate.transaction.JDBCTransactionFactory

      <!-- JDBC connection properties (end) -->

      org.hibernate.cache.HashtableCacheProvider


      <!-- ############################################ -->
      <!-- # mapping files with external dependencies # -->
      <!-- ############################################ -->

      <!-- following mapping file has a dependendy on -->
      <!-- 'bsh-{version}.jar'. -->
      <!-- uncomment this if you don't have bsh on your -->
      <!-- classpath. you won't be able to use the -->
      <!-- script element in process definition files -->


      <!-- following mapping files have a dependendy on -->
      <!-- 'jbpm-identity.jar', mapping files -->
      <!-- of the pluggable jbpm identity component. -->
      <!-- Uncomment the following 3 lines if you -->
      <!-- want to use the jBPM identity mgmgt -->
      <!-- component. -->
      <!-- identity mappings (begin) -->



      <!-- identity mappings (end) -->

      <!-- following mapping files have a dependendy on -->
      <!-- the JCR API -->

      <!-- ###################### -->
      <!-- # jbpm mapping files # -->
      <!-- ###################### -->

      <!-- hql queries and type defs -->


      <!-- graph.action mapping files -->


      <!-- graph.def mapping files -->









      <!-- graph.node mapping files -->










      <!-- context.def mapping files -->



      <!-- taskmgmt.def mapping files -->





      <!-- module.def mapping files -->


      <!-- bytes mapping files -->


      <!-- file.def mapping files -->


      <!-- scheduler.def mapping files -->



      <!-- graph.exe mapping files -->





      <!-- module.exe mapping files -->


      <!-- context.exe mapping files -->












      <!-- job mapping files -->





      <!-- taskmgmt.exe mapping files -->





      <!-- logging mapping files -->































      </session-factory>
      </hibernate-configuration>


      --- jbpm-ds.xml ----


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


      <local-tx-datasource>
      <jndi-name>JbpmDS</jndi-name>
      <connection-url>jdbc:mysql://172.17.225.171:3306/jbpm_sample</connection-url>
      <driver-class>com.mysql.jdbc.Driver</driver-class>
      <user-name>root</user-name>
      password
      <min-pool-size>1</min-pool-size>
      <max-pool-size>5</max-pool-size>
      <idle-timeout-minutes>0</idle-timeout-minutes>
      <track-statements/>
      <prepared-statement-cache-size>32</prepared-statement-cache-size>
      <type-mapping>MySQL</type-mapping>
      </local-tx-datasource>



      Please help in solving this issue in case you are aware of .

        • 1. Re: JBoss + JBPM + Mysql - Deployment is not going through
          jitendrasupe

          I was getting this error due to not configureing mySQL DB properly.

          I have followed following steps and configure it.

          1. Install the MySQL JDBC driver in the $JBOSS_HOME/server/default/lib directory. See also ¬¬¬¬¬SetUpAMysqlDatasource.

          2. Delete $JBOSS_HOME/server/default/deploy/hsqldb-ds.xml.

          3. Copy $JBOSS_HOME/docs/examples/jca/mysql-ds.xml to $JBOSS_HOME/server/default/deploy. Modify the <local-tx-datasource> element with your MySQL connection settings:
          <connection-url>jdbc:mysql://your-hostname:your-port/your-database-name</connection-url>
          <driver-class>com.mysql.jdbc.Driver</driver-class>
          <user-name>your-user</user-name>
          your-pass

          4. In $JBOSS_HOME/server/default/conf/standardjaws.xml change the <type-mapping> element:
          <type-mapping>mySQL</type-mapping>

          5. In standardjbosscmp-jdbc.xml change the following, not necessarily contiguous, elements:
          java:/DefaultDS
          <datasource-mapping>mySQL</datasource-mapping>
          <fk-constraint>true</fk-constraint>

          6. Add the following within the element of login-config.xml:
          <application-policy name = "MySqlDbRealm?">

          <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule?" flag = "required">
          <module-option name = "principal">your-user</module-option>
          <module-option name = "userName">your-user</module-option>
          <module-option name ="password">your-pass</module-option>
          <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM?,name=DefaultDS</module-option>
          </login-module>

          </application-policy>

          7. Replace file $JBOSS_HOME/server/default/deploy/jms/hsql-jdbc2-service.xml by file $JBOSS_HOME/docs/examples/jms/mysql-jdbc2-service.xml

          8. Change MySqlDS? to DefaultDS in $JBOSS_HOME/server/default/deploy/jms/mysql-jdbc2-service.xml:

          <depends optional-attribute-name="ConnectionManager">jboss.jca:service=DataSourceBinding,name=DefaultDS

          ...

          9. Rename hsqldb-jdbc-state-service.xml to mysql-jdbc-state-service.xml.
          Following Insert statements need to execute on the sample schema to populate appropriate data into required tables:

          Also we need to explicitly add contents in JBPM repository for sample examples. Queries for same are available in the folder "jbpm-jpdl-suite-3.2.1\jbpm-jpdl-3.2.1\server\server\jbpm\data\hypersonic\jbpmDB.script" for hypersoninc db. You can migrate those to mySQL DB.

          Let me know in case anyone want help regarding this.

          • 2. Re: JBoss + JBPM + Mysql - Deployment is not going through
            vperez

            ok, i ll be more specific..

            i am using this version -> jbpm-jpdl-suite-3.2.1.zip
            first i used this -> http://docs.jboss.com/jbpm/v3/userguide/thejbpmdatabase.html
            but some of these files don´t exist in this version (3.2.1).

            so i was searching in the wiki and de forum, and i found this articuls:
            ---> http://wiki.jboss.org/wiki/Wiki.jsp?page=SetUpAMysqlDatasource
            ---> http://wiki.jboss.org/wiki/Wiki.jsp?page=SetUpMysqlAsDefaultDS
            ---> http://www.jboss.com/index.html?module=bb&op=viewtopic&t=116029

            i tried doing this :

            1. Install the MySQL JDBC driver (mysql-connector-java-3.1.14-bin.jar) in the $JBOSS_HOME/server/default/lib directory.

            2. Delete $JBOSS_HOME/server/default/deploy/hsqldb-ds.xml.

            3. Copy $JBOSS_HOME/docs/examples/jca/mysql-ds.xml to $JBOSS_HOME/server/default/deploy. Modify the <local-tx-datasource> element with your MySQL connection settings:
            <connection-url>jdbc:mysql://your-hostname:your-port/your-database-name</connection-url>
            <driver-class>com.mysql.jdbc.Driver</driver-class>
            <user-name>your-user</user-name>
            your-pass

            4. In $JBOSS_HOME/server/default/conf/standardjaws.xml change the <type-mapping> element:
            <type-mapping>mySQL</type-mapping>

            5. In standardjbosscmp-jdbc.xml change the following, not necessarily contiguous, elements:
            java:/DefaultDS
            <datasource-mapping>mySQL</datasource-mapping>
            <fk-constraint>true</fk-constraint>

            6. Add the following within the element of login-config.xml:
            <application-policy name = "MySqlDbRealm?">

            <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule?" flag = "required">
            <module-option name = "principal">your-user</module-option>
            <module-option name = "userName">your-user</module-option>
            <module-option name ="password">your-pass</module-option>
            <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM?,name=DefaultDS</module-option>
            </login-module>

            </application-policy>

            7. Replace file $JBOSS_HOME/server/default/deploy/jms/hsql-jdbc2-service.xml by file $JBOSS_HOME/docs/examples/jms/mysql-jdbc2-service.xml

            8. Change MySqlDS? to DefaultDS in $JBOSS_HOME/server/default/deploy/jms/mysql-jdbc2-service.xml:

            <depends optional-attribute-name="ConnectionManager">jboss.jca:service=DataSourceBinding,name=DefaultDS
            ...

            9. Rename hsqldb-jdbc-state-service.xml to mysql-jdbc-state-service.xml.


            i was following these steps below. But its still no working, i cannot login in the console (localhost:8080/jbpm-console) and i was trying to deploy a process without success

            which definition database i should use???
            I would apreciate if you could help me with these issue
            regards, Victoria

            • 3. Re: JBoss + JBPM + Mysql - Deployment is not going through
              jitendrasupe

              Victoria,

              As I explained in my post you need to explicitly add contents in JBPM repository for sample examples. Queries for same are available in the folder "\jbpm-jpdl-3.2.1\server\server\jbpm\data\hypersonic\jbpmDB.script" for hypersoninc db.

              You need to migrate this script to compatible script for mySQL DB or DB you are using.

              This scirpt contains data related to login users, password, groups and membership details.

              After executing these scripts into the configured DB just recycle the server, you will be able to login into JBPM web console.

              Let me know in case you need any more details.

              -- Jitendra

              • 4. Re: JBoss + JBPM + Mysql - Deployment is not going through
                kukeltje

                from the jBPM source it is easy to generate ddl scripts for other databases.

                • 5. Re: JBoss + JBPM + Mysql - Deployment is not going through
                  vperez

                  How could i generate SQL scripts for mysql??
                  regards, Victoria

                  • 6. Re: JBoss + JBPM + Mysql - Deployment is not going through
                    vperez

                    i was trying with "jbpm-jpdl-3.2.1\db\jbpm.jpdl.mysql.sql" and "inserts" from "jbpm-jpdl-suite-3.2.1\jbpm-jpdl-3.2.1\server\server\jbpm\data\hypersonic\jbpmDB.script"

                    but still not working, what i should do??
                    thanks a lot, victoria..

                    • 7. Re: JBoss + JBPM + Mysql - Deployment is not going through
                      jitendrasupe

                      Victoria,

                      Can you paste the error you are getting in Server.log or on the page when you are tring to login on the web console?

                      That will give more clear picture of problem you are facing here.

                      -- Jitendra

                      • 8. Re: JBoss + JBPM + Mysql - Deployment is not going through
                        vperez

                        ===============================================================================
                        .
                        JBoss Bootstrap Environment
                        .
                        JBOSS_HOME: C:\JBoss\jbpm-jpdl-3.2.1\server\bin\\..
                        .
                        JAVA: C:\Archivos de programa\Java\jdk1.5.0_11\bin\java
                        .
                        JAVA_OPTS: -Dprogram.name=run.bat -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun
                        .rmi.dgc.server.gcInterval=3600000
                        .
                        CLASSPATH: C:\Archivos de programa\Java\jdk1.5.0_11\lib\tools.jar;C:\JBoss\jbpm-jpdl-3.2.1\server\
                        bin\\run.jar
                        .
                        ===============================================================================
                        .
                        07:27:44,656 INFO [Server] Starting JBoss (MX MicroKernel)...
                        07:27:44,656 INFO [Server] Release ID: JBoss [Zion] 4.0.4.GA (build: CVSTag=JBoss_4_0_4_GA date=200
                        605151000)
                        07:27:44,671 INFO [Server] Home Dir: C:\JBoss\jbpm-jpdl-3.2.1\server
                        07:27:44,687 INFO [Server] Home URL: file:/C:/JBoss/jbpm-jpdl-3.2.1/server/
                        07:27:44,687 INFO [Server] Patch URL: null
                        07:27:44,687 INFO [Server] Server Name: jbpm
                        07:27:44,687 INFO [Server] Server Home Dir: C:\JBoss\jbpm-jpdl-3.2.1\server\server\jbpm
                        07:27:44,687 INFO [Server] Server Home URL: file:/C:/JBoss/jbpm-jpdl-3.2.1/server/server/jbpm/
                        07:27:44,687 INFO [Server] Server Log Dir: C:\JBoss\jbpm-jpdl-3.2.1\server\server\jbpm\log
                        07:27:44,687 INFO [Server] Server Temp Dir: C:\JBoss\jbpm-jpdl-3.2.1\server\server\jbpm\tmp
                        07:27:44,703 INFO [Server] Root Deployment Filename: jboss-service.xml
                        07:27:45,390 INFO [ServerInfo] Java version: 1.5.0_11,Sun Microsystems Inc.
                        07:27:45,390 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.5.0_11-b03,Sun Microsystems In
                        c.
                        07:27:45,406 INFO [ServerInfo] OS-System: Windows XP 5.1,x86
                        07:27:46,453 INFO [Server] Core system initialized
                        07:27:51,203 INFO [WebService] Using RMI server codebase: http://samantha:8083/
                        07:27:51,265 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
                        07:27:52,281 INFO [NamingService] JNDI bootstrap JNP=/0.0.0.0:1099, RMI=/0.0.0.0:1098, backlog=50,
                        no client SocketFactory, Server SocketFactory=class org.jboss.net.sockets.DefaultSocketFactory
                        07:27:59,140 INFO [Embedded] Catalina naming disabled
                        07:27:59,296 INFO [ClusterRuleSetFactory] Unable to find a cluster rule set in the classpath. Will
                        load the default rule set.
                        07:27:59,296 INFO [ClusterRuleSetFactory] Unable to find a cluster rule set in the classpath. Will
                        load the default rule set.
                        07:27:59,953 INFO [Http11BaseProtocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
                        07:27:59,953 INFO [Catalina] Initialization processed in 657 ms
                        07:27:59,953 INFO [StandardService] Starting service jboss.web
                        07:27:59,953 INFO [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.5.17
                        07:28:00,031 INFO [StandardHost] XML validation disabled
                        07:28:00,078 INFO [Catalina] Server startup in 125 ms
                        07:28:00,359 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/http-invoker.sar/inv
                        oker.war/
                        07:28:01,515 INFO [WebappLoader] Dual registration of jndi stream handler: factory already defined
                        07:28:02,750 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jbossweb-tomcat55.sar/ROOT.
                        war/
                        07:28:04,312 INFO [TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/tmp17647jbossws-
                        exp.war/
                        07:28:04,718 INFO [SubscriptionManager] Bound event dispatcher to java:/EventDispatcher
                        07:28:05,312 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=.../deploy/jms/jbossmq-h
                        ttpil.sar/jbossmq-httpil.war/
                        07:28:09,140 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=.../deploy/management/conso
                        le-mgr.sar/web-console.war/
                        07:28:11,453 INFO [MailService] Mail Service bound to java:/Mail
                        07:28:11,875 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/
                        jboss-ha-local-jdbc.rar
                        07:28:11,968 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/
                        jboss-ha-xa-jdbc.rar
                        07:28:12,062 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/
                        jboss-local-jdbc.rar
                        07:28:12,125 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/
                        jboss-xa-jdbc.rar
                        07:28:12,234 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/
                        jms/jms-ra.rar
                        07:28:12,343 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/
                        mail-ra.rar
                        07:28:13,015 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=Data
                        SourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
                        07:28:14,937 INFO [JbpmCommandQueue] Bound to JNDI name: queue/JbpmCommandQueue
                        07:28:14,937 INFO [JbpmJobQueue] Bound to JNDI name: queue/JbpmJobQueue
                        07:28:15,203 INFO [UILServerILService] JBossMQ UIL service available at : /0.0.0.0:8093
                        07:28:15,328 INFO [DLQ] Bound to JNDI name: queue/DLQ
                        07:28:15,718 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=Conn
                        ectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
                        07:28:15,812 ERROR [MainDeployer] Could not create deployment: file:/C:/JBoss/jbpm-jpdl-3.2.1/server
                        /server/jbpm/deploy/mysql-ds.xml
                        org.jboss.deployment.DeploymentException: Trying to install an already registered mbean: jboss.jca:s
                        ervice=LocalTxCM,name=DefaultDS

                        at org.jboss.system.ServiceCreator.install(ServiceCreator.java:103)
                        at org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:449)
                        at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:171)
                        at org.jboss.system.ServiceController.install(ServiceController.java:226)
                        at sun.reflect.GeneratedMethodAccessor54.invoke(Unknown Source)
                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                        at java.lang.reflect.Method.invoke(Method.java:585)
                        at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                        at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                        at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                        at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                        at $Proxy4.install(Unknown Source)
                        at org.jboss.deployment.SARDeployer.create(SARDeployer.java:249)
                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                        at java.lang.reflect.Method.invoke(Method.java:585)
                        at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                        at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                        at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterce
                        ptor.java:142)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                        at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                        at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                        at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                        at $Proxy42.create(Unknown Source)
                        at org.jboss.deployment.XSLSubDeployer.create(XSLSubDeployer.java:192)
                        at org.jboss.deployment.MainDeployer.create(MainDeployer.java:953)
                        at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:807)
                        at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
                        at sun.reflect.GeneratedMethodAccessor55.invoke(Unknown Source)
                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                        at java.lang.reflect.Method.invoke(Method.java:585)
                        at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                        at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                        at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterce
                        ptor.java:142)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                        at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                        at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                        at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                        at $Proxy8.deploy(Unknown Source)
                        at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
                        at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
                        at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeplo
                        ymentScanner.java:263)
                        at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentSca
                        nner.java:336)
                        at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
                        at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)

                        at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                        at java.lang.reflect.Method.invoke(Method.java:585)
                        at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                        at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                        at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                        at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
                        at $Proxy0.start(Unknown Source)
                        at org.jboss.system.ServiceController.start(ServiceController.java:417)
                        at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                        at java.lang.reflect.Method.invoke(Method.java:585)
                        at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
                        at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                        at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                        at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                        at $Proxy4.start(Unknown Source)
                        at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
                        at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
                        at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
                        at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
                        at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755)
                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                        at java.lang.reflect.Method.invoke(Method.java:585)
                        at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
                        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
                        at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                        at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterce
                        ptor.java:142)
                        at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
                        at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
                        at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
                        at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
                        at $Proxy5.deploy(Unknown Source)
                        at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
                        at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
                        at org.jboss.Main.boot(Main.java:200)
                        at org.jboss.Main$1.run(Main.java:464)
                        at java.lang.Thread.run(Thread.java:595)
                        07:28:17,031 INFO [TomcatDeployer] deploy, ctxPath=/jbpm-console, warUrl=.../tmp/deploy/tmp17678jbp
                        m-console-exp.war/
                        07:28:17,515 INFO [ContextConfig] WARNING: Security role name user used in an <auth-constraint> wit
                        hout being defined in a <security-role>
                        07:28:18,484 ERROR [STDERR] 31-ago-2007 7:28:18 com.sun.faces.config.ConfigureListener contextInitia
                        lized

                        INFO: Initializing Sun's JavaServer Faces implementation (1.2_03-b09-FCS) for context 'null'
                        07:28:20,328 ERROR [STDERR] 31-ago-2007 7:28:20 com.sun.faces.spi.InjectionProviderFactory createIns
                        tance
                        ADVERTENCIA: JSF1033: Resource injection is DISABLED.
                        07:28:20,968 INFO [JbpmConfiguration] using jbpm configuration resource 'jbpm.cfg.xml'
                        07:28:21,562 INFO [Environment] Hibernate 3.2 cr2
                        07:28:21,593 INFO [Environment] hibernate.properties not found
                        07:28:21,593 INFO [Environment] Bytecode provider name : cglib
                        07:28:21,625 INFO [Environment] using JDK 1.4 java.sql.Timestamp handling
                        07:28:21,781 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/

                        07:28:22,187 INFO [Configuration] configuring from resource: hibernate.cfg.xml
                        07:28:22,218 INFO [Configuration] Configuration resource: hibernate.cfg.xml
                        07:28:22,250 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/action/Script.hbm.
                        xml
                        07:28:22,671 INFO [Configuration] Reading mappings from resource: org/jbpm/identity/User.hbm.xml
                        07:28:22,750 INFO [HbmBinder] Mapping class: org.jbpm.identity.User -> JBPM_ID_USER
                        07:28:22,843 ERROR [URLDeploymentScanner] Incomplete Deployment listing:

                        --- Incompletely deployed packages ---
                        org.jboss.deployment.DeploymentInfo@62fe03e9 { url=file:/C:/JBoss/jbpm-jpdl-3.2.1/server/server/jbpm
                        /deploy/mysql-ds.xml }
                        deployer: org.jboss.deployment.XSLSubDeployer@22e177
                        status: Deployment FAILED reason: Trying to install an already registered mbean: jboss.jca:service
                        =LocalTxCM,name=DefaultDS
                        state: FAILED
                        watch: file:/C:/JBoss/jbpm-jpdl-3.2.1/server/server/jbpm/deploy/mysql-ds.xml
                        altDD: null
                        lastDeployed: 1188556095796
                        lastModified: 1188556095750
                        mbeans:


                        07:28:23,000 INFO [HbmBinder] Mapping collection: org.jbpm.identity.User.permissions -> JBPM_ID_PER
                        MISSIONS
                        07:28:23,015 INFO [Configuration] Reading mappings from resource: org/jbpm/identity/Group.hbm.xml
                        07:28:23,031 INFO [HbmBinder] Mapping class: org.jbpm.identity.Group -> JBPM_ID_GROUP
                        07:28:23,187 INFO [Http11BaseProtocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
                        07:28:23,562 INFO [HbmBinder] Mapping collection: org.jbpm.identity.Group.permissions -> JBPM_ID_PE
                        RMISSIONS
                        07:28:23,562 INFO [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009
                        07:28:23,625 INFO [Configuration] Reading mappings from resource: org/jbpm/identity/Membership.hbm.
                        xml
                        07:28:23,656 INFO [HbmBinder] Mapping class: org.jbpm.identity.Membership -> JBPM_ID_MEMBERSHIP
                        07:28:23,656 INFO [HbmBinder] Mapping collection: org.jbpm.identity.Membership.permissions -> JBPM_
                        ID_PERMISSIONS
                        07:28:23,656 INFO [Configuration] Reading mappings from resource: org/jbpm/db/hibernate.queries.hbm
                        .xml
                        07:28:23,703 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/action/MailAction.
                        hbm.xml
                        07:28:23,718 INFO [JkMain] Jk running ID=0 time=0/343 config=null
                        07:28:23,750 INFO [Server] JBoss (MX MicroKernel) [4.0.4.GA (build: CVSTag=JBoss_4_0_4_GA date=2006
                        05151000)] Started in 39s:47ms
                        07:28:23,812 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/ProcessDefinit
                        ion.hbm.xml
                        07:28:23,890 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.ProcessDefinition -> JBPM_PROCESSDE
                        FINITION
                        07:28:23,984 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Node.hbm.xml
                        07:28:24,015 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Node -> JBPM_NODE
                        07:28:24,031 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Transition.hbm
                        .xml
                        07:28:24,062 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Transition -> JBPM_TRANSITION
                        07:28:24,078 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Event.hbm.xml
                        07:28:24,093 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Event -> JBPM_EVENT
                        07:28:24,093 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Action.hbm.xml

                        07:28:24,140 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Action -> JBPM_ACTION
                        07:28:24,140 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/SuperState.hbm
                        .xml
                        07:28:24,250 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.def.SuperState -> JBPM_NODE
                        07:28:24,265 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/ExceptionHandl
                        er.hbm.xml
                        07:28:24,281 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONH
                        ANDLER
                        07:28:24,281 INFO [Configuration] Reading mappings from resource: org/jbpm/instantiation/Delegation
                        .hbm.xml
                        07:28:24,296 INFO [HbmBinder] Mapping class: org.jbpm.instantiation.Delegation -> JBPM_DELEGATION
                        07:28:24,296 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/StartState.hb
                        m.xml
                        07:28:24,312 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.StartState -> JBPM_NODE
                        07:28:24,312 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/EndState.hbm.
                        xml
                        07:28:24,328 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.EndState -> JBPM_NODE
                        07:28:24,328 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/ProcessState.
                        hbm.xml
                        07:28:24,343 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.ProcessState -> JBPM_NODE
                        07:28:24,359 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Decision.hbm.
                        xml
                        07:28:24,375 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Decision -> JBPM_NODE
                        07:28:24,390 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.Decision.decisionConditions -
                        > JBPM_DECISIONCONDITIONS
                        07:28:24,390 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Fork.hbm.xml
                        07:28:24,406 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Fork -> JBPM_NODE
                        07:28:24,406 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Join.hbm.xml
                        07:28:24,421 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Join -> JBPM_NODE
                        07:28:24,421 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/MailNode.hbm.
                        xml
                        07:28:24,437 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.MailNode -> JBPM_NODE
                        07:28:24,437 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/State.hbm.xml

                        07:28:24,453 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.State -> JBPM_NODE
                        07:28:24,453 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/TaskNode.hbm.
                        xml
                        07:28:24,468 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.TaskNode -> JBPM_NODE
                        07:28:24,515 INFO [Configuration] Reading mappings from resource: org/jbpm/context/def/ContextDefin
                        ition.hbm.xml
                        07:28:24,531 INFO [Configuration] Reading mappings from resource: org/jbpm/context/def/VariableAcce
                        ss.hbm.xml
                        07:28:24,546 INFO [HbmBinder] Mapping class: org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEAC
                        CESS
                        07:28:24,546 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/TaskMgmtDef
                        inition.hbm.xml
                        07:28:24,562 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/Swimlane.hb
                        m.xml
                        07:28:24,578 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE
                        07:28:24,578 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/Task.hbm.xm
                        l
                        07:28:24,593 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Task -> JBPM_TASK
                        07:28:24,625 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/TaskControl
                        ler.hbm.xml
                        07:28:24,640 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTR
                        OLLER
                        07:28:24,640 INFO [Configuration] Reading mappings from resource: org/jbpm/module/def/ModuleDefinit
                        ion.hbm.xml
                        07:28:24,656 INFO [HbmBinder] Mapping class: org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEF
                        INITION
                        07:28:24,656 INFO [Configuration] Reading mappings from resource: org/jbpm/bytes/ByteArray.hbm.xml
                        07:28:24,671 INFO [HbmBinder] Mapping class: org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY
                        07:28:24,671 INFO [HbmBinder] Mapping collection: org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEB
                        LOCK
                        07:28:24,671 INFO [Configuration] Reading mappings from resource: org/jbpm/file/def/FileDefinition.
                        hbm.xml
                        07:28:24,687 INFO [HbmBinder] Mapping subclass: org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFI
                        NITION
                        07:28:24,703 INFO [Configuration] Reading mappings from resource: org/jbpm/scheduler/def/CreateTime
                        rAction.hbm.xml
                        07:28:24,703 INFO [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CreateTimerAction -> JBPM_AC
                        TION
                        07:28:24,718 INFO [Configuration] Reading mappings from resource: org/jbpm/scheduler/def/CancelTime
                        rAction.hbm.xml
                        07:28:24,734 INFO [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CancelTimerAction -> JBPM_AC
                        TION
                        07:28:24,734 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/Comment.hbm.xm
                        l
                        07:28:24,750 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.Comment -> JBPM_COMMENT
                        07:28:24,750 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/ProcessInstanc
                        e.hbm.xml
                        07:28:24,765 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINST
                        ANCE
                        07:28:24,796 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/Token.hbm.xml
                        07:28:24,812 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.Token -> JBPM_TOKEN
                        07:28:24,828 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/RuntimeAction.
                        hbm.xml
                        07:28:24,843 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION

                        07:28:24,843 INFO [Configuration] Reading mappings from resource: org/jbpm/module/exe/ModuleInstanc
                        e.hbm.xml
                        07:28:24,859 INFO [HbmBinder] Mapping class: org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTA
                        NCE
                        07:28:24,859 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/ContextInsta
                        nce.hbm.xml
                        07:28:24,875 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.ContextInstance -> JBPM_MODULE
                        INSTANCE
                        07:28:24,875 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/TokenVariabl
                        eMap.hbm.xml
                        07:28:24,890 INFO [HbmBinder] Mapping class: org.jbpm.context.exe.TokenVariableMap -> JBPM_TOKENVAR
                        IABLEMAP
                        07:28:24,906 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/VariableInst
                        ance.hbm.xml
                        07:28:24,921 INFO [HbmBinder] Mapping class: org.jbpm.context.exe.VariableInstance -> JBPM_VARIABLE
                        INSTANCE
                        07:28:24,937 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinst
                        ance/ByteArrayInstance.hbm.xml
                        07:28:24,937 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.ByteArrayInst
                        ance -> JBPM_VARIABLEINSTANCE
                        07:28:24,937 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinst
                        ance/DateInstance.hbm.xml
                        07:28:24,953 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DateInstance
                        -> JBPM_VARIABLEINSTANCE
                        07:28:24,953 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinst
                        ance/DoubleInstance.hbm.xml
                        07:28:24,984 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DoubleInstanc
                        e -> JBPM_VARIABLEINSTANCE
                        07:28:24,984 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinst
                        ance/HibernateLongInstance.hbm.xml
                        07:28:25,000 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateLong
                        Instance -> JBPM_VARIABLEINSTANCE
                        07:28:25,000 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinst
                        ance/HibernateStringInstance.hbm.xml
                        07:28:25,015 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateStri
                        ngInstance -> JBPM_VARIABLEINSTANCE
                        07:28:25,015 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinst
                        ance/LongInstance.hbm.xml
                        07:28:25,031 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.LongInstance
                        -> JBPM_VARIABLEINSTANCE
                        07:28:25,031 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinst
                        ance/NullInstance.hbm.xml
                        07:28:25,046 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.NullInstance
                        -> JBPM_VARIABLEINSTANCE
                        07:28:25,046 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinst
                        ance/StringInstance.hbm.xml
                        07:28:25,046 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.StringInstanc
                        e -> JBPM_VARIABLEINSTANCE
                        07:28:25,046 INFO [Configuration] Reading mappings from resource: org/jbpm/job/Job.hbm.xml
                        07:28:25,062 INFO [HbmBinder] Mapping class: org.jbpm.job.Job -> JBPM_JOB
                        07:28:25,078 INFO [Configuration] Reading mappings from resource: org/jbpm/job/Timer.hbm.xml
                        07:28:25,078 INFO [HbmBinder] Mapping subclass: org.jbpm.job.Timer -> JBPM_JOB
                        07:28:25,093 INFO [Configuration] Reading mappings from resource: org/jbpm/job/ExecuteNodeJob.hbm.x
                        ml
                        07:28:25,093 INFO [HbmBinder] Mapping subclass: org.jbpm.job.ExecuteNodeJob -> JBPM_JOB
                        07:28:25,109 INFO [Configuration] Reading mappings from resource: org/jbpm/job/ExecuteActionJob.hbm
                        .xml
                        07:28:25,109 INFO [HbmBinder] Mapping subclass: org.jbpm.job.ExecuteActionJob -> JBPM_JOB
                        07:28:25,109 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/TaskMgmtIns
                        tance.hbm.xml
                        07:28:25,125 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.exe.TaskMgmtInstance -> JBPM_MODU
                        LEINSTANCE
                        07:28:25,140 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/TaskInstanc
                        e.hbm.xml
                        07:28:25,156 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANC
                        E
                        07:28:25,171 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.pooledActors -
                        > JBPM_TASKACTORPOOL
                        07:28:25,171 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/PooledActor
                        .hbm.xml
                        07:28:25,187 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR
                        07:28:25,203 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.PooledActor.taskInstances -
                        > JBPM_TASKACTORPOOL
                        07:28:25,203 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/SwimlaneIns
                        tance.hbm.xml
                        07:28:25,218 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.SwimlaneInstance -> JBPM_SWIMLAN
                        EINSTANCE
                        07:28:25,218 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/ProcessLog.h
                        bm.xml
                        07:28:25,234 INFO [HbmBinder] Mapping class: org.jbpm.logging.log.ProcessLog -> JBPM_LOG
                        07:28:25,234 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/MessageLog.h
                        bm.xml
                        07:28:25,250 INFO [HbmBinder] Mapping subclass: org.jbpm.logging.log.MessageLog -> JBPM_LOG
                        07:28:25,250 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/CompositeLog
                        .hbm.xml
                        07:28:25,265 INFO [HbmBinder] Mapping subclass: org.jbpm.logging.log.CompositeLog -> JBPM_LOG
                        07:28:25,265 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ActionLog.hbm.
                        xml
                        07:28:25,265 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ActionLog -> JBPM_LOG
                        07:28:25,265 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/NodeLog.hbm.xm
                        l
                        07:28:25,281 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.NodeLog -> JBPM_LOG
                        07:28:25,281 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ProcessInstanc
                        eCreateLog.hbm.xml
                        07:28:25,296 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM
                        _LOG
                        07:28:25,296 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ProcessInstanc
                        eEndLog.hbm.xml
                        07:28:25,312 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceEndLog -> JBPM_LO
                        G
                        07:28:25,312 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ProcessStateLo
                        g.hbm.xml
                        07:28:25,328 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessStateLog -> JBPM_LOG
                        07:28:25,328 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/SignalLog.hbm.
                        xml
                        07:28:25,343 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.SignalLog -> JBPM_LOG
                        07:28:25,343 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TokenCreateLog
                        .hbm.xml
                        07:28:25,359 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenCreateLog -> JBPM_LOG
                        07:28:25,359 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TokenEndLog.hb
                        m.xml
                        07:28:25,390 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenEndLog -> JBPM_LOG
                        07:28:25,390 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TransitionLog.
                        hbm.xml
                        07:28:25,406 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TransitionLog -> JBPM_LOG
                        07:28:25,406 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableLog.
                        hbm.xml
                        07:28:25,406 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableLog -> JBPM_LOG
                        07:28:25,421 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableCrea
                        teLog.hbm.xml
                        07:28:25,421 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableCreateLog -> JBPM_LOG
                        07:28:25,421 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableDele
                        teLog.hbm.xml
                        07:28:25,437 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableDeleteLog -> JBPM_LOG
                        07:28:25,437 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableUpda
                        teLog.hbm.xml
                        07:28:25,453 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG
                        07:28:25,453 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinst
                        ance/ByteArrayUpdateLog.hbm.xml
                        07:28:25,468 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.ByteArrayUpda
                        teLog -> JBPM_LOG
                        07:28:25,468 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinst
                        ance/DateUpdateLog.hbm.xml
                        07:28:25,468 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DateUpdateLog
                        -> JBPM_LOG
                        07:28:25,468 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinst
                        ance/DoubleUpdateLog.hbm.xml
                        07:28:25,484 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DoubleUpdateL
                        og -> JBPM_LOG
                        07:28:25,484 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinst
                        ance/HibernateLongUpdateLog.hbm.xml
                        07:28:25,500 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateLong
                        UpdateLog -> JBPM_LOG
                        07:28:25,500 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinst
                        ance/HibernateStringUpdateLog.hbm.xml
                        07:28:25,515 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateStri
                        ngUpdateLog -> JBPM_LOG
                        07:28:25,515 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinst
                        ance/LongUpdateLog.hbm.xml
                        07:28:25,531 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.LongUpdateLog
                        -> JBPM_LOG
                        07:28:25,531 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinst
                        ance/StringUpdateLog.hbm.xml
                        07:28:25,546 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.StringUpdateL
                        og -> JBPM_LOG
                        07:28:25,546 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskLog.hbm
                        .xml
                        07:28:25,546 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG
                        07:28:25,562 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskCreateL
                        og.hbm.xml
                        07:28:25,562 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG
                        07:28:25,562 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskAssignL
                        og.hbm.xml
                        07:28:25,578 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG
                        07:28:25,578 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskEndLog.
                        hbm.xml
                        07:28:25,593 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskEndLog -> JBPM_LOG
                        07:28:25,593 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneLog
                        .hbm.xml
                        07:28:25,625 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneLog -> JBPM_LOG
                        07:28:25,625 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneCre
                        ateLog.hbm.xml
                        07:28:25,625 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneCreateLog -> JBPM_LOG

                        07:28:25,640 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneAss
                        ignLog.hbm.xml
                        07:28:25,656 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneAssignLog -> JBPM_LOG

                        07:28:25,656 INFO [Configuration] Configured SessionFactory: null
                        07:28:25,656 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.action.Script -> JBPM_ACTION
                        07:28:25,656 INFO [HbmBinder] Mapping subclass: org.jbpm.context.def.ContextDefinition -> JBPM_MODU
                        LEDEFINITION
                        07:28:25,656 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.action.MailAction -> JBPM_ACTION
                        07:28:25,656 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.def.TaskMgmtDefinition -> JBPM_MO
                        DULEDEFINITION
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.identity.User.memberships -> JBPM_ID_MEM
                        BERSHIP
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.identity.Group.children -> JBPM_ID_GROUP

                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.identity.Group.memberships -> JBPM_ID_ME
                        MBERSHIP
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.events -> JB
                        PM_EVENT
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.exceptionHan
                        dlers -> JBPM_EXCEPTIONHANDLER
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.nodes -> JBP
                        M_NODE
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.actions -> J
                        BPM_ACTION
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.definitions
                        -> JBPM_MODULEDEFINITION
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.events -> JBPM_EVENT
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.exceptionHandlers -> JBPM
                        _EXCEPTIONHANDLER
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.leavingTransitions -> JBP
                        M_TRANSITION
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.arrivingTransitions -> JB
                        PM_TRANSITION
                        07:28:25,671 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.events -> JBPM_EVEN
                        T
                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.exceptionHandlers -
                        > JBPM_EXCEPTIONHANDLER
                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Event.actions -> JBPM_ACTION
                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE
                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ExceptionHandler.actions -> JB
                        PM_ACTION
                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.ProcessState.variableAccesses
                        -> JBPM_VARIABLEACCESS
                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK
                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK

                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT
                        07:28:25,687 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.exceptionHandlers -> J
                        BPM_EXCEPTIONHANDLER
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskController.variableAcce
                        sses -> JBPM_VARIABLEACCESS
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.file.def.FileDefinition.processFiles ->
                        JBPM_BYTEARRAY
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.runtimeActions
                        -> JBPM_RUNTIMEACTION
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.instances -> J
                        BPM_MODULEINSTANCE
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.children -> JBPM_TOKEN
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT

                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.context.exe.ContextInstance.tokenVariabl
                        eMaps -> JBPM_TOKENVARIABLEMAP
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.context.exe.TokenVariableMap.variableIns
                        tances -> JBPM_VARIABLEINSTANCE
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneIn
                        stances -> JBPM_SWIMLANEINSTANCE
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstan
                        ces -> JBPM_TASKINSTANCE
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.variableInstan
                        ces -> JBPM_VARIABLEINSTANCE
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.comments -> JB
                        PM_COMMENT
                        07:28:25,703 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActo
                        rs -> JBPM_POOLEDACTOR
                        07:28:25,718 INFO [HbmBinder] Mapping collection: org.jbpm.logging.log.CompositeLog.children -> JBP
                        M_LOG
                        07:28:25,718 INFO [HbmBinder] Mapping collection: org.jbpm.graph.action.Script.variableAccesses ->
                        JBPM_VARIABLEACCESS
                        07:28:25,718 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlane
                        s -> JBPM_SWIMLANE
                        07:28:25,718 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks ->
                        JBPM_TASK
                        07:28:25,953 INFO [NamingHelper] JNDI InitialContext properties:{}
                        07:28:25,953 FATAL [DatasourceConnectionProvider] Could not find datasource: java:/JbpmDS
                        javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        07:28:25,953 ERROR [JobExecutorThread] exception in job executor thread. waiting 5000 milliseconds
                        org.hibernate.HibernateException: Could not find datasource
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:56)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        Caused by: javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        ... 13 more
                        07:28:30,984 INFO [NamingHelper] JNDI InitialContext properties:{}
                        07:28:30,984 FATAL [DatasourceConnectionProvider] Could not find datasource: java:/JbpmDS
                        javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        07:28:31,000 ERROR [JobExecutorThread] exception in job executor thread. waiting 10000 milliseconds
                        org.hibernate.HibernateException: Could not find datasource
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:56)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        Caused by: javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        ... 13 more
                        07:28:41,031 INFO [NamingHelper] JNDI InitialContext properties:{}
                        07:28:41,031 FATAL [DatasourceConnectionProvider] Could not find datasource: java:/JbpmDS
                        javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        07:28:41,031 ERROR [JobExecutorThread] exception in job executor thread. waiting 20000 milliseconds
                        org.hibernate.HibernateException: Could not find datasource
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:56)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        Caused by: javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        ... 13 more
                        07:29:01,062 INFO [NamingHelper] JNDI InitialContext properties:{}
                        07:29:01,062 FATAL [DatasourceConnectionProvider] Could not find datasource: java:/JbpmDS
                        javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        07:29:01,062 ERROR [JobExecutorThread] exception in job executor thread. waiting 40000 milliseconds
                        org.hibernate.HibernateException: Could not find datasource
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:56)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        Caused by: javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        ... 13 more
                        07:29:41,093 INFO [NamingHelper] JNDI InitialContext properties:{}
                        07:29:41,093 FATAL [DatasourceConnectionProvider] Could not find datasource: java:/JbpmDS
                        javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        07:29:41,093 ERROR [JobExecutorThread] exception in job executor thread. waiting 80000 milliseconds
                        org.hibernate.HibernateException: Could not find datasource
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:56)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        Caused by: javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        ... 13 more
                        07:31:01,125 INFO [NamingHelper] JNDI InitialContext properties:{}
                        07:31:01,125 FATAL [DatasourceConnectionProvider] Could not find datasource: java:/JbpmDS
                        javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                        at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                        at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                        at javax.naming.InitialContext.lookup(InitialContext.java:351)
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:52)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        07:31:01,125 ERROR [JobExecutorThread] exception in job executor thread. waiting 160000 milliseconds

                        org.hibernate.HibernateException: Could not find datasource
                        at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvi
                        der.java:56)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:124)
                        at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProvid
                        erFactory.java:56)
                        at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                        at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                        at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                        at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                        at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServic
                        eFactory.java:91)
                        at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:
                        94)
                        at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                        at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)

                        at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                        at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                        at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                        Caused by: javax.naming.NameNotFoundException: JbpmDS not bound
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                        at org.jnp.server.NamingServer.getBinding(NamingServer.java:5

                        • 9. Re: JBoss + JBPM + Mysql - Deployment is not going through
                          mputz

                           

                          07:28:15,812 ERROR [MainDeployer] Could not create deployment: file:/C:/JBoss/jbpm-jpdl-3.2.1/server
                          /server/jbpm/deploy/mysql-ds.xml
                          org.jboss.deployment.DeploymentException: Trying to install an already registered mbean: jboss.jca:s
                          ervice=LocalTxCM,name=DefaultDS


                          Check how many datasource configuration files (*-ds.xml) you have in the /deploy directory. I would suspect you find two, the default hsqldb-ds.xml and the mysql-ds.xml you've created. Just make sure that these are registered under a unique jndi name:

                          hsqldb-ds.xml --> jndi-name: DefaultDS
                          mysql-ds.xml --> jndi-name: JbpmDS

                          • 10. Re: JBoss + JBPM + Mysql - Deployment is not going through
                            vperez

                            I have only one (*.-ds.xml) file, the "mysql-ds.xml" in "c:/JBoss/jbpm-jpdl-3.2.1/server/server/jbpm/deploy"

                            In this file: C:\JBoss\jbpm-jpdl-3.2.1\server\server\jbpm\conf\login-config.xml, i modify this: (JbpmDS to DefaultDs)

                            <application-policy name = "jbpm">

                            <login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule"
                            flag="required">
                            <module-option name="dsJndiName">java:/DefaultDS</module-option>
                            <module-option name="principalsQuery">
                            SELECT PASSWORD_ FROM JBPM_ID_USER WHERE NAME_=?
                            </module-option>
                            <module-option name="rolesQuery">
                            SELECT g.NAME_ ,'Roles'
                            FROM JBPM_ID_USER u,
                            JBPM_ID_MEMBERSHIP m,
                            JBPM_ID_GROUP g
                            WHERE g.TYPE_='security-role'
                            AND m.GROUP_ = g.ID_
                            AND m.USER_ = u.ID_
                            AND u.NAME_=?
                            </module-option>
                            </login-module>

                            </application-policy>


                            Now i have less errors and i can loggin But I haven't yet been able to deploy couse cant find the datasource


                            12:17:08,515 FATAL [DatasourceConnectionProvider] Could not find datasource: java:/JbpmDS
                            javax.naming.NameNotFoundException: JbpmDS not bound
                            at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                            at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                            at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                            at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                            at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                            at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                            at javax.naming.InitialContext.lookup(InitialContext.java:351)
                            at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvider.java:52)
                            at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
                            at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)
                            at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                            at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                            at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                            at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                            at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServiceFactory.java:91)
                            at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:94)
                            at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                            at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)
                            at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                            at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                            at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                            12:17:08,625 ERROR [JobExecutorThread] exception in job executor thread. waiting 5000 milliseconds
                            org.hibernate.HibernateException: Could not find datasource
                            at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvider.java:56)
                            at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
                            at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)
                            at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:385)
                            at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:61)
                            at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1928)
                            at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1211)
                            at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServiceFactory.java:91)
                            at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:94)
                            at org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:98)
                            at org.jbpm.persistence.db.DbPersistenceService.getJobSession(DbPersistenceService.java:354)
                            at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:563)
                            at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:109)
                            at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
                            Caused by: javax.naming.NameNotFoundException: JbpmDS not bound
                            at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
                            at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
                            at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
                            at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
                            at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
                            at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
                            at javax.naming.InitialContext.lookup(InitialContext.java:351)
                            at org.hibernate.connection.DatasourceConnectionProvider.configure(DatasourceConnectionProvider.java:52)

                            thanks for your help, Victoria

                            • 11. Re: JBoss + JBPM + Mysql - Deployment is not going through
                              kukeltje

                              well, you *should* have *two*, but with different jndi names. one for DefaultDS and one for jBPMDS as martin stated.

                              Besides that, I strongly advise you to learn the basics of JEE and appservers since I get the impression (no offence) you lack a great deal of knowledge in this area.

                              • 12. Re: JBoss + JBPM + Mysql - Deployment is not going through

                                hi,

                                I'm trying to deploy the jbpm-jpdl-3.2.2 jbpm-console project to JBoss Server 4.0.5.GA with MySQL database.

                                I have followed this forum and the jbpm tutorial:
                                http://docs.jboss.com/jbpm/v3/userguide/thejbpmdatabase.html

                                In the webapp I can login but can't show the jbpm process, which I deployed before and in the database there is the deployed process to see.

                                Here is the console output:

                                15:21:05,949 ERROR [STDERR] 06.12.2007 15:21:05 com.sun.faces.config.ConfigureListener contextInitialized
                                INFO: Initializing Sun's JavaServer Faces implementation (1.2_03-b09-FCS) for context 'null'
                                15:21:06,167 ERROR [STDERR] 06.12.2007 15:21:06 com.sun.faces.spi.InjectionProviderFactory createInstance
                                WARNUNG: JSF1033: Resource injection is DISABLED.
                                15:21:06,355 INFO [JbpmConfiguration] using jbpm configuration resource 'jbpm.cfg.xml'
                                15:21:06,636 INFO [StaleObjectLogConfigurer] stale object exceptions will be hidden from logging
                                15:21:06,714 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
                                15:21:06,745 INFO [Environment] Hibernate 3.2.0.ga
                                15:21:06,777 INFO [Environment] hibernate.properties not found
                                15:21:06,777 INFO [Environment] Bytecode provider name : javassist
                                15:21:06,777 INFO [Environment] using JDK 1.4 java.sql.Timestamp handling
                                15:21:06,886 INFO [Configuration] configuring from resource: hibernate.cfg.xml
                                15:21:06,886 INFO [Configuration] Configuration resource: hibernate.cfg.xml
                                15:21:06,933 INFO [Http11BaseProtocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
                                15:21:06,964 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/action/Script.hbm.xml
                                15:21:07,027 INFO [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009
                                15:21:07,042 INFO [JkMain] Jk running ID=0 time=0/47 config=null
                                15:21:07,042 INFO [Configuration] Reading mappings from resource: org/jbpm/identity/User.hbm.xml
                                15:21:07,042 INFO [Server] JBoss (MX MicroKernel) [4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)] Started in 15s:421ms
                                15:21:07,105 INFO [HbmBinder] Mapping class: org.jbpm.identity.User -> JBPM_ID_USER
                                15:21:07,152 INFO [HbmBinder] Mapping collection: org.jbpm.identity.User.permissions -> JBPM_ID_PERMISSIONS
                                15:21:07,152 INFO [Configuration] Reading mappings from resource: org/jbpm/identity/Group.hbm.xml
                                15:21:07,167 INFO [HbmBinder] Mapping class: org.jbpm.identity.Group -> JBPM_ID_GROUP
                                15:21:07,214 INFO [HbmBinder] Mapping collection: org.jbpm.identity.Group.permissions -> JBPM_ID_PERMISSIONS
                                15:21:07,214 INFO [Configuration] Reading mappings from resource: org/jbpm/identity/Membership.hbm.xml
                                15:21:07,230 INFO [HbmBinder] Mapping class: org.jbpm.identity.Membership -> JBPM_ID_MEMBERSHIP
                                15:21:07,230 INFO [HbmBinder] Mapping collection: org.jbpm.identity.Membership.permissions -> JBPM_ID_PERMISSIONS
                                15:21:07,230 INFO [Configuration] Reading mappings from resource: org/jbpm/db/hibernate.queries.hbm.xml
                                15:21:07,261 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/action/MailAction.hbm.xml
                                15:21:07,261 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/ProcessDefinition.hbm.xml
                                15:21:07,261 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.ProcessDefinition -> JBPM_PROCESSDEFINITION
                                15:21:07,292 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Node.hbm.xml
                                15:21:07,308 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Node -> JBPM_NODE
                                15:21:07,308 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Transition.hbm.xml
                                15:21:07,323 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Transition -> JBPM_TRANSITION
                                15:21:07,323 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Event.hbm.xml
                                15:21:07,323 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Event -> JBPM_EVENT
                                15:21:07,323 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Action.hbm.xml
                                15:21:07,339 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Action -> JBPM_ACTION
                                15:21:07,339 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/SuperState.hbm.xml
                                15:21:07,370 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.def.SuperState -> JBPM_NODE
                                15:21:07,386 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/ExceptionHandler.hbm.xml
                                15:21:07,386 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONHANDLER
                                15:21:07,386 INFO [Configuration] Reading mappings from resource: org/jbpm/instantiation/Delegation.hbm.xml
                                15:21:07,386 INFO [HbmBinder] Mapping class: org.jbpm.instantiation.Delegation -> JBPM_DELEGATION
                                15:21:07,402 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/StartState.hbm.xml
                                15:21:07,402 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.StartState -> JBPM_NODE
                                15:21:07,402 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/EndState.hbm.xml
                                15:21:07,402 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.EndState -> JBPM_NODE
                                15:21:07,402 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/ProcessState.hbm.xml
                                15:21:07,417 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.ProcessState -> JBPM_NODE
                                15:21:07,417 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Decision.hbm.xml
                                15:21:07,417 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Decision -> JBPM_NODE
                                15:21:07,417 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.Decision.decisionConditions -> JBPM_DECISIONCONDITIONS
                                15:21:07,417 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Fork.hbm.xml
                                15:21:07,433 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Fork -> JBPM_NODE
                                15:21:07,433 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Join.hbm.xml
                                15:21:07,433 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Join -> JBPM_NODE
                                15:21:07,433 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/MailNode.hbm.xml
                                15:21:07,448 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.MailNode -> JBPM_NODE
                                15:21:07,448 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/State.hbm.xml
                                15:21:07,448 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.State -> JBPM_NODE
                                15:21:07,448 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/TaskNode.hbm.xml
                                15:21:07,464 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.TaskNode -> JBPM_NODE
                                15:21:07,464 INFO [Configuration] Reading mappings from resource: org/jbpm/context/def/ContextDefinition.hbm.xml
                                15:21:07,480 INFO [Configuration] Reading mappings from resource: org/jbpm/context/def/VariableAccess.hbm.xml
                                15:21:07,480 INFO [HbmBinder] Mapping class: org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEACCESS
                                15:21:07,480 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml
                                15:21:07,480 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/Swimlane.hbm.xml
                                15:21:07,495 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE
                                15:21:07,495 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/Task.hbm.xml
                                15:21:07,495 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Task -> JBPM_TASK
                                15:21:07,511 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/TaskController.hbm.xml
                                15:21:07,511 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTROLLER
                                15:21:07,511 INFO [Configuration] Reading mappings from resource: org/jbpm/module/def/ModuleDefinition.hbm.xml
                                15:21:07,511 INFO [HbmBinder] Mapping class: org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEFINITION
                                15:21:07,527 INFO [Configuration] Reading mappings from resource: org/jbpm/bytes/ByteArray.hbm.xml
                                15:21:07,527 INFO [HbmBinder] Mapping class: org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY
                                15:21:07,542 INFO [HbmBinder] Mapping collection: org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEBLOCK
                                15:21:07,542 INFO [Configuration] Reading mappings from resource: org/jbpm/file/def/FileDefinition.hbm.xml
                                15:21:07,558 INFO [HbmBinder] Mapping subclass: org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFINITION
                                15:21:07,558 INFO [Configuration] Reading mappings from resource: org/jbpm/scheduler/def/CreateTimerAction.hbm.xml
                                15:21:07,558 INFO [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CreateTimerAction -> JBPM_ACTION
                                15:21:07,558 INFO [Configuration] Reading mappings from resource: org/jbpm/scheduler/def/CancelTimerAction.hbm.xml
                                15:21:07,589 INFO [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CancelTimerAction -> JBPM_ACTION
                                15:21:07,589 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/Comment.hbm.xml
                                15:21:07,589 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.Comment -> JBPM_COMMENT
                                15:21:07,589 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/ProcessInstance.hbm.xml
                                15:21:07,605 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINSTANCE
                                15:21:07,605 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/Token.hbm.xml
                                15:21:07,605 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.Token -> JBPM_TOKEN
                                15:21:07,620 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/RuntimeAction.hbm.xml
                                15:21:07,620 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION
                                15:21:07,620 INFO [Configuration] Reading mappings from resource: org/jbpm/module/exe/ModuleInstance.hbm.xml
                                15:21:07,620 INFO [HbmBinder] Mapping class: org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTANCE
                                15:21:07,620 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/ContextInstance.hbm.xml
                                15:21:07,636 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.ContextInstance -> JBPM_MODULEINSTANCE
                                15:21:07,636 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/TokenVariableMap.hbm.xml
                                15:21:07,636 INFO [HbmBinder] Mapping class: org.jbpm.context.exe.TokenVariableMap -> JBPM_TOKENVARIABLEMAP
                                15:21:07,652 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/VariableInstance.hbm.xml
                                15:21:07,652 INFO [HbmBinder] Mapping class: org.jbpm.context.exe.VariableInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,667 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml
                                15:21:07,667 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.ByteArrayInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,667 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml
                                15:21:07,667 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DateInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,667 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml
                                15:21:07,683 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DoubleInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,683 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml
                                15:21:07,683 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateLongInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,683 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml
                                15:21:07,683 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateStringInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,683 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml
                                15:21:07,683 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.LongInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,683 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml
                                15:21:07,698 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.NullInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,698 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml
                                15:21:07,698 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.StringInstance -> JBPM_VARIABLEINSTANCE
                                15:21:07,698 INFO [Configuration] Reading mappings from resource: org/jbpm/job/Job.hbm.xml
                                15:21:07,698 INFO [HbmBinder] Mapping class: org.jbpm.job.Job -> JBPM_JOB
                                15:21:07,714 INFO [Configuration] Reading mappings from resource: org/jbpm/job/Timer.hbm.xml
                                15:21:07,714 INFO [HbmBinder] Mapping subclass: org.jbpm.job.Timer -> JBPM_JOB
                                15:21:07,714 INFO [Configuration] Reading mappings from resource: org/jbpm/job/ExecuteNodeJob.hbm.xml
                                15:21:07,714 INFO [HbmBinder] Mapping subclass: org.jbpm.job.ExecuteNodeJob -> JBPM_JOB
                                15:21:07,714 INFO [Configuration] Reading mappings from resource: org/jbpm/job/ExecuteActionJob.hbm.xml
                                15:21:07,730 INFO [HbmBinder] Mapping subclass: org.jbpm.job.ExecuteActionJob -> JBPM_JOB
                                15:21:07,730 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml
                                15:21:07,730 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.exe.TaskMgmtInstance -> JBPM_MODULEINSTANCE
                                15:21:07,730 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml
                                15:21:07,745 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANCE
                                15:21:07,745 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.pooledActors -> JBPM_TASKACTORPOOL
                                15:21:07,745 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/PooledActor.hbm.xml
                                15:21:07,761 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR
                                15:21:07,761 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.PooledActor.taskInstances -> JBPM_TASKACTORPOOL
                                15:21:07,761 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml
                                15:21:07,761 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.SwimlaneInstance -> JBPM_SWIMLANEINSTANCE
                                15:21:07,761 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/ProcessLog.hbm.xml
                                15:21:07,761 INFO [HbmBinder] Mapping class: org.jbpm.logging.log.ProcessLog -> JBPM_LOG
                                15:21:07,761 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/MessageLog.hbm.xml
                                15:21:07,777 INFO [HbmBinder] Mapping subclass: org.jbpm.logging.log.MessageLog -> JBPM_LOG
                                15:21:07,777 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/CompositeLog.hbm.xml
                                15:21:07,777 INFO [HbmBinder] Mapping subclass: org.jbpm.logging.log.CompositeLog -> JBPM_LOG
                                15:21:07,777 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ActionLog.hbm.xml
                                15:21:07,777 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ActionLog -> JBPM_LOG
                                15:21:07,777 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/NodeLog.hbm.xml
                                15:21:07,792 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.NodeLog -> JBPM_LOG
                                15:21:07,792 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml
                                15:21:07,808 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM_LOG
                                15:21:07,808 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ProcessInstanceEndLog.hbm.xml
                                15:21:07,808 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceEndLog -> JBPM_LOG
                                15:21:07,808 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ProcessStateLog.hbm.xml
                                15:21:07,808 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessStateLog -> JBPM_LOG
                                15:21:07,808 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/SignalLog.hbm.xml
                                15:21:07,823 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.SignalLog -> JBPM_LOG
                                15:21:07,823 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TokenCreateLog.hbm.xml
                                15:21:07,823 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenCreateLog -> JBPM_LOG
                                15:21:07,823 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TokenEndLog.hbm.xml
                                15:21:07,823 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenEndLog -> JBPM_LOG
                                15:21:07,823 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TransitionLog.hbm.xml
                                15:21:07,839 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TransitionLog -> JBPM_LOG
                                15:21:07,839 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableLog.hbm.xml
                                15:21:07,839 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableLog -> JBPM_LOG
                                15:21:07,839 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableCreateLog.hbm.xml
                                15:21:07,839 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableCreateLog -> JBPM_LOG
                                15:21:07,839 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableDeleteLog.hbm.xml
                                15:21:07,855 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableDeleteLog -> JBPM_LOG
                                15:21:07,855 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableUpdateLog.hbm.xml
                                15:21:07,855 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG
                                15:21:07,855 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/ByteArrayUpdateLog.hbm.xml
                                15:21:07,855 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.ByteArrayUpdateLog -> JBPM_LOG
                                15:21:07,855 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/DateUpdateLog.hbm.xml
                                15:21:07,870 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DateUpdateLog -> JBPM_LOG
                                15:21:07,870 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/DoubleUpdateLog.hbm.xml
                                15:21:07,870 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DoubleUpdateLog -> JBPM_LOG
                                15:21:07,870 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/HibernateLongUpdateLog.hbm.xml
                                15:21:07,870 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateLongUpdateLog -> JBPM_LOG
                                15:21:07,870 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/HibernateStringUpdateLog.hbm.xml
                                15:21:07,886 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateStringUpdateLog -> JBPM_LOG
                                15:21:07,886 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/LongUpdateLog.hbm.xml
                                15:21:07,886 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.LongUpdateLog -> JBPM_LOG
                                15:21:07,886 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml
                                15:21:07,886 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.StringUpdateLog -> JBPM_LOG
                                15:21:07,886 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskLog.hbm.xml
                                15:21:07,902 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG
                                15:21:07,902 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml
                                15:21:07,902 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG
                                15:21:07,902 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml
                                15:21:07,902 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG
                                15:21:07,902 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskEndLog.hbm.xml
                                15:21:07,933 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskEndLog -> JBPM_LOG
                                15:21:07,933 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneLog.hbm.xml
                                15:21:07,933 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneLog -> JBPM_LOG
                                15:21:07,933 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneCreateLog.hbm.xml
                                15:21:07,933 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneCreateLog -> JBPM_LOG
                                15:21:07,933 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneAssignLog.hbm.xml
                                15:21:07,933 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneAssignLog -> JBPM_LOG
                                15:21:07,933 INFO [Configuration] Configured SessionFactory: null
                                15:21:07,933 INFO [HbmBinder] Mapping subclass: org.jbpm.context.def.ContextDefinition -> JBPM_MODULEDEFINITION
                                15:21:07,933 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.action.Script -> JBPM_ACTION
                                15:21:07,933 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.def.TaskMgmtDefinition -> JBPM_MODULEDEFINITION
                                15:21:07,933 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.action.MailAction -> JBPM_ACTION
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.identity.User.memberships -> JBPM_ID_MEMBERSHIP
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.identity.Group.children -> JBPM_ID_GROUP
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.identity.Group.memberships -> JBPM_ID_MEMBERSHIP
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.events -> JBPM_EVENT
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.nodes -> JBPM_NODE
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.actions -> JBPM_ACTION
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.definitions -> JBPM_MODULEDEFINITION
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.events -> JBPM_EVENT
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.leavingTransitions -> JBPM_TRANSITION
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.arrivingTransitions -> JBPM_TRANSITION
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.events -> JBPM_EVENT
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Event.actions -> JBPM_ACTION
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ExceptionHandler.actions -> JBPM_ACTION
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.ProcessState.variableAccesses -> JBPM_VARIABLEACCESS
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskController.variableAccesses -> JBPM_VARIABLEACCESS
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.file.def.FileDefinition.processFiles -> JBPM_BYTEARRAY
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.runtimeActions -> JBPM_RUNTIMEACTION
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.instances -> JBPM_MODULEINSTANCE
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.children -> JBPM_TOKEN
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.context.exe.ContextInstance.tokenVariableMaps -> JBPM_TOKENVARIABLEMAP
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.context.exe.TokenVariableMap.variableInstances -> JBPM_VARIABLEINSTANCE
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneInstances -> JBPM_SWIMLANEINSTANCE
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstances -> JBPM_TASKINSTANCE
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.variableInstances -> JBPM_VARIABLEINSTANCE
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.comments -> JBPM_COMMENT
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActors -> JBPM_POOLEDACTOR
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.logging.log.CompositeLog.children -> JBPM_LOG
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.graph.action.Script.variableAccesses -> JBPM_VARIABLEACCESS
                                15:21:07,933 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes -> JBPM_SWIMLANE
                                15:21:07,948 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks -> JBPM_TASK
                                15:21:08,011 INFO [NamingHelper] JNDI InitialContext properties:{}
                                15:21:08,011 INFO [DatasourceConnectionProvider] Using datasource: java:/JbpmDS
                                15:21:08,011 INFO [SettingsFactory] RDBMS: MySQL, version: 5.0.45-community-nt
                                15:21:08,011 INFO [SettingsFactory] JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.0.8 ( Revision: ${svn.Revision} )
                                15:21:08,027 INFO [Dialect] Using dialect: org.hibernate.dialect.MySQLDialect
                                15:21:08,027 INFO [TransactionFactoryFactory] Transaction strategy: org.hibernate.transaction.JTATransactionFactory
                                15:21:08,027 INFO [NamingHelper] JNDI InitialContext properties:{}
                                15:21:08,042 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
                                15:21:08,042 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
                                15:21:08,042 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
                                15:21:08,042 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
                                15:21:08,042 INFO [SettingsFactory] Automatic flush during beforeCompletion(): disabled
                                15:21:08,042 INFO [SettingsFactory] Automatic session close at end of transaction: disabled
                                15:21:08,042 INFO [SettingsFactory] JDBC batch size: 15
                                15:21:08,042 INFO [SettingsFactory] JDBC batch updates for versioned data: disabled
                                15:21:08,042 INFO [SettingsFactory] Scrollable result sets: enabled
                                15:21:08,042 INFO [SettingsFactory] JDBC3 getGeneratedKeys(): enabled
                                15:21:08,042 INFO [SettingsFactory] Connection release mode: auto
                                15:21:08,042 INFO [SettingsFactory] Maximum outer join fetch depth: 2
                                15:21:08,042 INFO [SettingsFactory] Default batch fetch size: 1
                                15:21:08,042 INFO [SettingsFactory] Generate SQL with comments: disabled
                                15:21:08,042 INFO [SettingsFactory] Order SQL updates by primary key: disabled
                                15:21:08,042 INFO [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
                                15:21:08,042 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
                                15:21:08,042 INFO [SettingsFactory] Query language substitutions: {}
                                15:21:08,042 INFO [SettingsFactory] JPA-QL strict compliance: disabled
                                15:21:08,042 INFO [SettingsFactory] Second-level cache: enabled
                                15:21:08,042 INFO [SettingsFactory] Query cache: disabled
                                15:21:08,042 INFO [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
                                15:21:08,042 INFO [SettingsFactory] Optimize cache for minimal puts: disabled
                                15:21:08,042 INFO [SettingsFactory] Structured second-level cache entries: disabled
                                15:21:08,058 INFO [SettingsFactory] Statistics: disabled
                                15:21:08,058 INFO [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
                                15:21:08,058 INFO [SettingsFactory] Default entity-mode: pojo
                                15:21:08,089 INFO [SessionFactoryImpl] building session factory
                                15:21:09,042 INFO [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
                                15:21:09,042 INFO [NamingHelper] JNDI InitialContext properties:{}
                                15:21:09,292 WARN [FromElementType] Using non-qualified column reference [isSuspended -> ([ISSUSPENDED_])]
                                15:21:09,292 WARN [FromElementType] Using non-qualified column reference [token -> ([TOKEN_])]
                                15:21:09,417 WARN [FromElementType] Using non-qualified column reference [processInstance -> ([PROCESSINSTANCE_])]
                                15:21:09,448 WARN [FromElementType] Using non-qualified column reference [id -> ([ID_])]
                                15:21:09,448 WARN [FromElementType] Using non-qualified column reference [processInstance -> ([PROCESSINSTANCE_])]
                                15:21:09,464 WARN [FromElementType] Using non-qualified column reference [processInstance -> ([PROCESSINSTANCE_])]
                                15:21:09,480 WARN [FromElementType] Using non-qualified column reference [isSuspended -> ([ISSUSPENDED_])]
                                15:21:09,480 WARN [FromElementType] Using non-qualified column reference [token -> ([TOKEN_])]
                                


                                What do these WARNs mean?


                                15:21:30,588 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.faces.lifecycle.ELResolverInitPhaseListener populateFacesELResolverForJsp
                                INFO: JSF1027: [null] The ELResolvers for JSF were not registered with the JSP container.
                                15:21:30,807 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-ui.taglib.xml
                                15:21:30,838 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel-compat.taglib.xml
                                15:21:30,838 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/tfl-compat.taglib.xml
                                15:21:30,854 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-core.taglib.xml
                                15:21:30,869 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/tf.taglib.xml
                                15:21:30,885 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/identity.taglib.xml
                                15:21:30,901 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel-data.taglib.xml
                                15:21:30,916 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel-action.taglib.xml
                                15:21:30,932 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-fn.taglib.xml
                                15:21:30,932 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/tfl.taglib.xml
                                15:21:30,963 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-core.taglib.xml
                                15:21:30,963 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-html.taglib.xml
                                15:21:30,979 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel-nav.taglib.xml
                                15:21:30,994 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel-simple.taglib.xml
                                15:21:30,994 ERROR [STDERR] 06.12.2007 15:21:30 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/tf-compat.taglib.xml
                                15:21:31,369 ERROR [STDERR] 06.12.2007 15:21:31 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
                                INFO: Added Library from: jar:file:/C:/Programme/jbossAS/jboss-4.0.5.GA/server/default/./tmp/deploy/tmp39885jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/core.taglib.xml
                                


                                What do these errors mean?

                                15:21:43,478 ERROR [STDERR] java.lang.ClassCastException: org.jbpm.graph.def.Node_$$_javassist_80 cannot be cast to javassist.util.proxy.ProxyObject
                                15:21:43,478 ERROR [STDERR] at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.getProxy(JavassistLazyInitializer.java:126)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.proxy.pojo.javassist.JavassistProxyFactory.getProxy(JavassistProxyFactory.java:48)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.tuple.entity.AbstractEntityTuplizer.createProxy(AbstractEntityTuplizer.java:379)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.persister.entity.AbstractEntityPersister.createProxy(AbstractEntityPersister.java:3388)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.event.def.DefaultLoadEventListener.createProxyIfNecessary(DefaultLoadEventListener.java:255)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.event.def.DefaultLoadEventListener.proxyOrLoad(DefaultLoadEventListener.java:189)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:101)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.impl.SessionImpl.fireLoad(SessionImpl.java:878)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.impl.SessionImpl.internalLoad(SessionImpl.java:846)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.type.EntityType.resolveIdentifier(EntityType.java:266)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.type.EntityType.resolve(EntityType.java:303)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.engine.TwoPhaseLoad.initializeEntity(TwoPhaseLoad.java:116)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.loader.Loader.initializeEntitiesAndCollections(Loader.java:842)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.loader.Loader.doQuery(Loader.java:717)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:224)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.loader.Loader.doList(Loader.java:2144)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2028)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.loader.Loader.list(Loader.java:2023)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:393)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:338)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java:172)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1121)
                                15:21:43,478 ERROR [STDERR] at org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
                                15:21:43,478 ERROR [STDERR] at org.jbpm.db.GraphSession.findAllProcessDefinitions(GraphSession.java:210)
                                15:21:43,478 ERROR [STDERR] at org.jbpm.jsf.core.action.ListProcessesActionListener.handleAction(ListProcessesActionListener.java:33)
                                15:21:43,478 ERROR [STDERR] at org.jbpm.jsf.core.impl.JbpmActionListenerWrapper.processAction(JbpmActionListenerWrapper.java:82)
                                15:21:43,478 ERROR [STDERR] at javax.faces.event.ActionEvent.processListener(ActionEvent.java:77)
                                15:21:43,478 ERROR [STDERR] at javax.faces.component.UIComponentBase.broadcast(UIComponentBase.java:758)
                                15:21:43,478 ERROR [STDERR] at javax.faces.component.UICommand.broadcast(UICommand.java:368)
                                15:21:43,478 ERROR [STDERR] at org.jboss.gravel.action.handler.ResponseActionsHandler.onComponentPopulated(ResponseActionsHandler.java:24)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:180)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.ui.DefineHandler.apply(DefineHandler.java:58)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:128)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:306)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:279)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:68)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.ui.DefineHandler.apply(DefineHandler.java:58)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:128)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:306)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:279)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:68)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:49)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:25)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:248)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:294)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:273)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:143)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:113)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:49)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:25)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:248)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:294)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:273)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:143)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:113)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:49)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:25)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:95)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.FaceletViewHandler.buildView(FaceletViewHandler.java:503)
                                15:21:43,478 ERROR [STDERR] at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:546)
                                15:21:43,478 ERROR [STDERR] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
                                15:21:43,478 ERROR [STDERR] at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106)
                                15:21:43,478 ERROR [STDERR] at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248)
                                15:21:43,478 ERROR [STDERR] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
                                15:21:43,478 ERROR [STDERR] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
                                15:21:43,478 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
                                15:21:43,478 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:524)
                                15:21:43,478 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
                                15:21:43,478 ERROR [STDERR] at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
                                15:21:43,478 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
                                15:21:43,478 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
                                15:21:43,478 ERROR [STDERR] at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
                                15:21:43,478 ERROR [STDERR] at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
                                15:21:43,478 ERROR [STDERR] at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
                                15:21:43,478 ERROR [STDERR] at java.lang.Thread.run(Thread.java:619)
                                


                                After I deployed my helloWorld process, I got this Exception.

                                Please give me some information about my errors? Thanks a lot.

                                regards
                                Chocopie

                                • 13. Re: JBoss + JBPM + Mysql - Deployment is not going through

                                  hi,

                                  nobody has idea of my problem?


                                  Please help.............I can't continue doing anything with jbpm, if I still have this problem.


                                  regards
                                  chocopie