Discussion:
[jboss-user] [jBPM] - Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS
Lisa DeSouza
2013-01-23 11:44:15 UTC
Permalink
Lisa DeSouza [https://community.jboss.org/people/lisadesouza89] commented on the document

"Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS"

To view all comments on this document, visit: https://community.jboss.org/docs/DOC-47975#comment-11457

--------------------------------------------------
Ok,after an entire day of searching, this looks very promising. But I have 1 question; where you say ant install.demo.db i don't have an ant function like this in my build.xml, the only thing close is install.db.files, but that only copies the drivers etc, but doesn't create any database structure.

Is only ant start.human.task to create database tables??

HELP!! :(
--------------------------------------------------
Thomas Setiabudi
2013-01-25 05:36:14 UTC
Permalink
Thomas Setiabudi [https://community.jboss.org/people/thomas.setiabudi] modified the document:

"Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS"

To view the document, visit: https://community.jboss.org/docs/DOC-47975

--------------------------------------------------------------
*
#A_What_I_Am_Going_To_Do A. What I Am Going To Do


*
#B_The_Setup_Steps B. The Setup Steps


*
#C_Lets_Install_it C. Lets Install it




I have been using JBPM5.3 for some months and then I switch to JBPM5.4.
After I download JBPM5.4.Final full installer, I thought the DB Set up will be exactly the same with JBPM5.3 full installer https://community.jboss.org/docs/DOC-19221 https://community.jboss.org/wiki/SetUpJBPM53ToUseMSSQLServer2008
But I realized that some things has changed and at the time when I write this, the guide for changing Database in JBPM5.4 full installer is still outdated http://docs.jboss.org/jbpm/v5.4/userguide/ch.installer.html#d0e609 http://docs.jboss.org/jbpm/v5.4/userguide/ch.installer.html#d0e609


h1. A. What I Am Going To Do
     1. I will change the Database setting of jbpm5.4 final full installer and point it to use MS SQL Server 2008
     2. The Database driver used is jtds-1.2.4
     3. Although it is possible to have separate database for Task and Process data, in this setup I will use only one Database for all the Task database tables and all the Process database tables.
     4. I do this set up using Windows XP 64 Bit
     5. apache ant version used is Apache Ant 1.8.4
     6. jdk used is jdk 1.6 (set in Windows Environment variable as JAVA_HOME)
     7. I use 7-zip to help me modify files inside a .war file

h1. B. The Setup Steps
1. JBPM5.4 final full installer comes with almost every needed component, except eclipse (optional). But I want the eclipse, so I download *eclipse-java-helios-SR2-win32-x86_64.zip* and put it into
*jbpm-installer\lib* folder

2. Because my OS is 64 bit version, I have to do a modification to the *build.xml* file found in *jbpm-installer* folder. So I changed this part

<!-- Download Eclipse -->
  <condition property="download.type" value="win32">
    <os family="windows" />
  </condition>


to

<!-- Download Eclipse -->
  <condition property="download.type" value="win32-x86_64">
    <os family="windows" />
  </condition>


3. Now its time to set up the Hibernate settings, mostly we will make changes to the hibernate dialect, lets open *jbpm-installer\db* folder.

4. I am not sure how each file is used here in jbpm5.4 since the official guide still reflect jbpm5.3 files, so here is what I do, I start with opening *jbpm-installer\db*\*jbpm-persistence-JPA1.xml*
I changed:

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
      <property name="hibernate.max_fetch_depth" value="3"/>



to


<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
      <property name="hibernate.max_fetch_depth" value="3"/>



5. Then I open *jbpm-installer\db*\*jbpm-persistence-JPA2.xml*
I changed:

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
      <property name="hibernate.max_fetch_depth" value="3" />



to

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect" />
      <property name="hibernate.max_fetch_depth" value="3" />



6. Lets continue, and open *jbpm-installer\db\task-persistence-JPA1.xml*
I changed:

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
      <property name="hibernate.connection.driver_class" value="org.h2.Driver"/>
      <property name="hibernate.connection.url" value="jdbc:h2:tcp://localhost/runtime/task" />
      <property name="hibernate.connection.username" value="sa"/>
      <property name="hibernate.connection.password" value=""/>



to


<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
      <property name="hibernate.connection.driver_class" value="net.sourceforge.jtds.jdbc.Driver"/>
      <property name="hibernate.connection.url" value="jdbc:jtds:sqlserver://DBName:1433/MyJBPMDB" />
      <property name="hibernate.connection.username" value="myuser"/>
      <property name="hibernate.connection.password" value="mypassword"/>



7. Open *jbpm-installer\db\task-persistence-JPA2.xml*
I changed:

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>         
      <property name="hibernate.max_fetch_depth" value="3"/>



to

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>         
      <property name="hibernate.max_fetch_depth" value="3"/>



8. Lets navigate to other file in other folder, lets open *jbpm-installer\task-service\resources\META-INF\persistence.xml*
I changed:

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>
      <property name="hibernate.connection.driver_class" value="org.h2.Driver"/>
      <property name="hibernate.connection.url" value="jdbc:h2:tcp://localhost/runtime/task" />
      <property name="hibernate.connection.username" value="sa"/>
      <property name="hibernate.connection.password" value=""/>


to

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
      <property name="hibernate.connection.driver_class" value="net.sourceforge.jtds.jdbc.Driver"/>
      <property name="hibernate.connection.url" value="jdbc:jtds:sqlserver://DBName:1433/MyJBPMDB" />
      <property name="hibernate.connection.username" value="myuser"/>
      <property name="hibernate.connection.password" value="mypassword"/>


9. Ok, lets dig into .war files in the lib folder, (I use 7-zip to help me modify files inside .war files), lets open *jbpm-installer\lib* folder

10. Open *jbpm-installer\lib\jbpm-gwt-console-server-5.4.0.Final-EE6.war\WEB-INF\classes\META-INF\persistence.xml*
I changed:

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect" />
      <property name="hibernate.max_fetch_depth" value="3" />



to

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect" />
      <property name="hibernate.max_fetch_depth" value="3" />



11. Next, Open *jbpm-installer\lib\jbpm-human-task-war-5.4.0.Final-EE6.war\WEB-INF\classes\META-INF\persistence.xml*
I changed:

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>         
      <property name="hibernate.max_fetch_depth" value="3"/>


to

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>         
      <property name="hibernate.max_fetch_depth" value="3"/>



12. Allright, seems like we are done changing dialects, lets provide our jtds jar. put *jtds-1.2.4.jar* into *jbpm-installer\db\driver* folder

13. next, we need to provide an xml file that will be used by jboss AS to recognize our jtds later, so *Create* a file called *sqlserver_module.xml* and put it in *jbpm-installer\db* folder
The file content is:

<module xmlns="urn:jboss:module:1.0" name="net.sourceforge.jtds">
   <resources>
     <resource-root path="jtds-1.2.4.jar"/>
   </resources>

   <dependencies>
      <module name="javax.api"/>
      <module name="javax.transaction.api"/>
    </dependencies>
</module>



14. Wondered how the ant build will recognize our sqlserver_module.xml later? Happens to me too at first, lets open *jbpm-installer\build.properties* file
Look at this section:

# data base related properties
db.driver.jar=${install.home}/db/driver/${db.driver.jar.name}
db.driver.module.dir=${jboss.home}/modules/${db.driver.module.prefix}/main/
# default is H2
db.name=h2
db.driver.jar.name=${db.name}.jar
db.driver.download.url=http://repo1.maven.org/maven2/com/h2database/h2/${H2.version}/h2-${H2.version}.jar
#other options are mysql
#  db.name=mysql
#  db.driver.module.prefix=com/mysql
#  db.driver.jar.name=${db.name}-connector-java.jar
#  db.driver.download.url=https://repository.jboss.org/nexus/service/local/repositories/central/content/mysql/mysql-connector-java/5.1.18/mysql-connector-java-5.1.18.jar
#postresql
#  db.name=postresql
#  db.driver.module.prefix=org/postgresql
#  db.driver.jar.name=${db.name}-jdbc.jar
#  db.driver.download.url=https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/postgresql/postgresql/9.1-902.jdbc4/postgresql-9.1-902.jdbc4.jar



lets comment out the h2 setting and make our own sqlserver setting like this:

# data base related properties
db.driver.jar=${install.home}/db/driver/${db.driver.jar.name}
db.driver.module.dir=${jboss.home}/modules/${db.driver.module.prefix}/main/
# default is H2
#db.name=h2
#db.driver.jar.name=${db.name}.jar
#db.driver.download.url=http://repo1.maven.org/maven2/com/h2database/h2/${H2.version}/h2-${H2.version}.jar
#other options are mysql
#  db.name=mysql
#  db.driver.module.prefix=com/mysql
#  db.driver.jar.name=${db.name}-connector-java.jar
#  db.driver.download.url=https://repository.jboss.org/nexus/service/local/repositories/central/content/mysql/mysql-connector-java/5.1.18/mysql-connector-java-5.1.18.jar
#postresql
#  db.name=postresql
#  db.driver.module.prefix=org/postgresql
#  db.driver.jar.name=${db.name}-jdbc.jar
#  db.driver.download.url=https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/postgresql/postgresql/9.1-902.jdbc4/postgresql-9.1-902.jdbc4.jar
#sqlserver
db.name=sqlserver
db.driver.module.prefix=net/sourceforge/jtds
db.driver.jar.name=jtds-1.2.4.jar



because or db.name is sqlserver, our sqlserver_module.xml will be recognized by the ant build later on.
If you really want to know the reason, open *jbpm-installer\build.xml* and look at this section

    <copy file="db/${db.name}_module.xml" tofile="${db.driver.module.dir}/module.xml" />



15. ok, now lets deal with the jboss AS 7 standalone setting, open *jbpm-installer\standalone.xml*
we need to do two things here, modify data source and make jboss as recognize our jtds driver, so change this section:

<datasource jta="true" jndi-name="java:jboss/datasources/jbpmDS" pool-name="H2DS" enabled="true" use-java-context="true" use-ccm="true">
                    <connection-url>jdbc:h2:~/jbpm</connection-url>
                    <driver>h2</driver>
                    <pool>
                        <min-pool-size>1</min-pool-size>
                        <max-pool-size>4</max-pool-size>
                        <prefill>false</prefill>
                        <use-strict-min>false</use-strict-min>
                        <flush-strategy>FailingConnectionOnly</flush-strategy>
                    </pool>
                    <security>
                        <user-name>sa</user-name>
                    </security>
                    <validation>
                        <check-valid-connection-sql>SELECT 1</check-valid-connection-sql>
                        <validate-on-match>false</validate-on-match>
                        <background-validation>false</background-validation>
                    </validation>
                </datasource>
                <drivers>
                    <driver name="h2" module="com.h2database.h2">
                        <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
                    </driver>
                </drivers>



to

               <datasource jndi-name="java:jboss/datasources/jbpmDS" pool-name="H2DS" enabled="true" jta="true" use-java-context="true" use-ccm="true">
                    <connection-url>jdbc:jtds:sqlserver://DBName:1433/MyJBPMDB</connection-url>
                    <driver>JTDS</driver>
                    <pool>
                        <min-pool-size>1</min-pool-size>
                        <max-pool-size>4</max-pool-size>
                        <prefill>false</prefill>
                        <use-strict-min>false</use-strict-min>
                        <flush-strategy>FailingConnectionOnly</flush-strategy>
                    </pool>
                    <security>
                       <user-name>myuser</user-name>
                       <password>mypassword</password>
                    </security>
                    <validation>
                       <check-valid-connection-sql>SELECT 1</check-valid-connection-sql>
                       <validate-on-match>false</validate-on-match>
                       <background-validation>false</background-validation>
                    </validation>
                </datasource>
                <drivers>
                   <driver name="JTDS" module="net.sourceforge.jtds">
                            <driver-class>net.sourceforge.jtds.jdbc.Driver</driver-class> 
                    </driver>
                                         <driver name="h2" module="com.h2database.h2">
                                                 <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
                                        </driver>
                </drivers>


16. Phew, quite a lot files that we have configured. at this point you may want to copy and backup the whole *jbpm-installer* folder, just in case you missed some configuration and caused error in the installation process later, who knows, things like that can happen, so just to be safe...

h1. C. Lets Install it
1. use our windows cmd and go to jbpm-installer folder.

2. run "ant install.demo"

3. in my case, this happen, so after ant install.demo finished successfully, I need to go to
*jbpm-installer\jboss-as-7.1.1.Final\standalone\deployments\jbpm-human-task-war.war\WEB-INF\classes\META-INF\persistence.xml*
and modify it from

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>         
      <property name="hibernate.max_fetch_depth" value="3"/>
     <property name="hibernate.hbm2ddl.auto" value="create" />


to

<properties>
      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>         
      <property name="hibernate.max_fetch_depth" value="3"/>
      <property name="hibernate.hbm2ddl.auto" value="update" />



4. run "ant install.db.files" to install our db files

5. run "ant start.human.task" to let it create the task tables in the database

6. stop that cmd (hint: ctrl+c and say Y)

5. run "ant start.jboss" to start the JBOSS AS server

6. Look at your database, and verify if dbo.Task table is still there.

7. Enjoy your JBPM5.4 with MS SQL Server 2008
--------------------------------------------------------------

Comment by going to Community
[https://community.jboss.org/docs/DOC-47975]

Create a new document in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&containerType=14&container=2034]
Thomas Setiabudi
2013-01-25 05:40:42 UTC
Permalink
Thomas Setiabudi [https://community.jboss.org/people/thomas.setiabudi] commented on the document

"Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS"

To view all comments on this document, visit: https://community.jboss.org/docs/DOC-47975#comment-11468

--------------------------------------------------
Hi Lisa DeSouza,

Sorry it was a mistake, it should be install.db.files. and you are correct that this command just copy the db driver to the jboss as, etc.

The db structure is created when:
1. When you deploy and start jbpm-human-task.war in jboss AS, then it will create all tables for Human Task
2. When you deploy and start jbpm-gwt-console-server.war in jboss AS, then it will create all tables for Process
3. If you run the sample human task by executing ant start.human.task, it will create all tables for Human Task (same effect as no. 1)

What JBPM version do you use?
--------------------------------------------------
Libor Krzyžanek
2013-01-25 08:35:45 UTC
Permalink
Lisa DeSouza [https://community.jboss.org/people/lisadesouza89] commented on the document

"Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS"

To view all comments on this document, visit: https://community.jboss.org/docs/DOC-47975#comment-11469

--------------------------------------------------
I'm using jBPM 5.4, all the setup seems to be fine, but after install, when I run ant start.demo the appliations like jbpm console, guvnor drools, human task etc. ie. all the war files in the deployment folder DO NOT deploy successfully.
Earlier I was getting the error with hornetq, but then I read in another forum that hornetq was not included in the default standalone.xml, so I am now using standalone-full.xml with the edited datasources section as you explained in your article.
My server.log is as follows:

10:54:36,147 INFO  [org.jboss.as.security] (MSC service thread 1-8) JBAS013100: Current PicketBox version=4.0.7.Final 10:54:36,250 INFO  [org.jboss.as.connector] (MSC service thread 1-2) JBAS010408: Starting JCA Subsystem (JBoss IronJacamar 1.0.9.Final) 10:54:36,301 INFO  [org.jboss.as.naming] (MSC service thread 1-2) JBAS011802: Starting Naming Service 10:54:36,338 INFO  [org.jboss.jaxr] (MSC service thread 1-2) JBAS014000: Started JAXR subsystem, binding JAXR connection factory into JNDI as: java:jboss/jaxr/ConnectionFactory 10:54:36,345 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-2) JBAS015400: Bound mail session [java:jboss/mail/Default] 10:54:36,354 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 33) JBAS010404: Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver (version 5.1) 10:54:37,374 WARN  [org.jboss.as.messaging] (MSC service thread 1-3) JBAS011600: AIO wasn't located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal 10:54:37,509 INFO  [org.jboss.ws.common.management.AbstractServerConfig] (MSC service thread 1-6) JBoss Web Services - Stack CXF Server 4.0.2.GA 10:54:37,820 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-3) live server is starting with configuration HornetQ Configuration (clustered=false,backup=false,sharedStore=true,journalDirectory=E:\CIBIL-JBPM\jbpm-installer\jboss-as-7.1.1.Final\standalone\data\messagingjournal,bindingsDirectory=E:\CIBIL-JBPM\jbpm-installer\jboss-as-7.1.1.Final\standalone\data\messagingbindings,largeMessagesDirectory=E:\CIBIL-JBPM\jbpm-installer\jboss-as-7.1.1.Final\standalone\data\messaginglargemessages,pagingDirectory=E:\CIBIL-JBPM\jbpm-installer\jboss-as-7.1.1.Final\standalone\data\messagingpaging) 10:54:37,831 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-3) Waiting to obtain live lock 10:54:38,125 INFO  [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-4) Starting Coyote HTTP/1.1 on http-localhost-127.0.0.1-8080 10:54:38,192 INFO  [org.hornetq.core.persistence.impl.journal.JournalStorageManager] (MSC service thread 1-3) Using NIO Journal 10:54:38,802 WARN  [jacorb.codeset] (MSC service thread 1-5) Warning - unknown codeset (Cp1252) - defaulting to ISO-8859-1 10:54:38,821 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-8) JBAS015012: Started FileSystemDeploymentService for directory E:\CIBIL-JBPM\jbpm-installer\jboss-as-7.1.1.Final\standalone\deployments 10:54:38,833 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015014: Re-attempting failed deployment designer.war 10:54:38,852 INFO  [org.hornetq.core.server.impl.FileLockNodeManager] (MSC service thread 1-3) Waiting to obtain live lock 10:54:38,859 INFO  [org.hornetq.core.server.impl.FileLockNodeManager] (MSC service thread 1-3) Live Server Obtained live lock 10:54:38,866 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015014: Re-attempting failed deployment drools-guvnor.war 10:54:38,876 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015014: Re-attempting failed deployment jbpm-form-builder.war 10:54:38,890 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015014: Re-attempting failed deployment jbpm-gwt-console-server.war 10:54:38,900 INFO  [org.jboss.as.remoting] (MSC service thread 1-1) JBAS017100: Listening on localhost/127.0.0.1:4447 10:54:38,900 INFO  [org.jboss.as.remoting] (MSC service thread 1-8) JBAS017100: Listening on /127.0.0.1:9999 10:54:38,903 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015014: Re-attempting failed deployment jbpm-gwt-console.war 10:54:38,938 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015014: Re-attempting failed deployment jbpm-human-task-war.war 10:54:39,176 INFO  [org.jboss.as.jacorb] (MSC service thread 1-5) JBAS016330: CORBA ORB Service started 10:54:39,472 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:jboss/datasources/jbpmDS] 10:54:40,300 INFO  [org.jboss.as.jacorb] (MSC service thread 1-4) JBAS016328: CORBA Naming Service started 10:54:40,826 INFO  [org.hornetq.core.remoting.impl.netty.NettyAcceptor] (MSC service thread 1-3) Started Netty Acceptor version 3.2.5.Final-a96d88c localhost:5445 for CORE protocol 10:54:40,831 INFO  [org.hornetq.core.remoting.impl.netty.NettyAcceptor] (MSC service thread 1-3) Started Netty Acceptor version 3.2.5.Final-a96d88c localhost:5455 for CORE protocol 10:54:40,840 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-3) Server is now live 10:54:40,847 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-3) HornetQ Server version 2.2.13.Final (HQ_2_2_13_FINAL_AS7, 122) [5d40309b-66a9-11e2-a6d9-adc7f43623d4]) started 10:54:40,861 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-4) trying to deploy queue jms.queue.testQueue 10:54:40,899 INFO  [org.jboss.as.messaging] (MSC service thread 1-4) JBAS011601: Bound messaging object to jndi name java:/queue/test 10:54:40,915 INFO  [org.jboss.as.messaging] (MSC service thread 1-4) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/test 10:54:40,923 INFO  [org.hornetq.core.server.impl.HornetQServerImpl] (MSC service thread 1-6) trying to deploy queue jms.topic.testTopic 10:54:41,050 INFO  [org.jboss.as.messaging] (MSC service thread 1-6) JBAS011601: Bound messaging object to jndi name java:/topic/test 10:54:41,055 INFO  [org.jboss.as.messaging] (MSC service thread 1-6) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/topic/test 10:54:41,073 INFO  [org.jboss.as.deployment.connector] (MSC service thread 1-1) JBAS010406: Registered connection factory java:/JmsXA 10:54:41,078 INFO  [org.jboss.as.messaging] (MSC service thread 1-8) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory 10:54:41,084 INFO  [org.jboss.as.messaging] (MSC service thread 1-8) JBAS011601: Bound messaging object to jndi name java:/RemoteConnectionFactory 10:54:41,091 INFO  [org.jboss.as.messaging] (MSC service thread 1-7) JBAS011601: Bound messaging object to jndi name java:/ConnectionFactory 10:54:41,098 INFO  [org.hornetq.ra.HornetQResourceAdapter] (MSC service thread 1-1) HornetQ resource adaptor started 10:54:41,103 INFO  [org.jboss.as.connector.services.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-1) IJ020002: Deployed: file://RaActivatorhornetq-ra 10:54:41,109 INFO  [org.jboss.as.deployment.connector] (MSC service thread 1-7) JBAS010401: Bound JCA ConnectionFactory [java:/JmsXA] 10:54:41,189 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015876: Starting deployment of "jbpm-form-builder.war" 10:54:41,189 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015876: Starting deployment of "designer.war" 10:54:41,198 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "jbpm-gwt-console-server.war" 10:54:41,197 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "drools-guvnor.war" 10:54:41,199 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "jbpm-gwt-console.war" 10:54:41,199 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015876: Starting deployment of "jbpm-human-task-war.war" 10:55:01,250 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:55:01,259 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:55:01,266 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:55:01,274 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jaxb1-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:55:01,281 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:55:01,288 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jaxb-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:55:01,295 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:55:01,302 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:55:01,310 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-human-task-war.war/WEB-INF/lib/mail-1.4.jar"  does not point to a valid jar for a Class-Path reference. 10:55:02,216 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'org.springframework.context.ApplicationContext,org.springframework.beans.BeansException' for service type 'org.apache.cxf.bus.factory' 10:55:02,241 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory' 10:55:02,273 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory' 10:55:02,409 INFO  [org.jboss.as.jpa] (MSC service thread 1-7) JBAS011401: Read persistence.xml for org.jbpm.task.ddl 10:55:03,162 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-6) JBAS018567: Deployment "deployment.jbpm-human-task-war.war" is using a private module ("org.jboss.netty:main") which may be changed or removed in future versions without notice. 10:55:04,737 INFO  [org.jboss.as.jpa] (MSC service thread 1-6) JBAS011402: Starting Persistence Unit Service 'jbpm-human-task-war.war#org.jbpm.task.ddl' 10:55:12,029 INFO  [org.hibernate.annotations.common.Version] (MSC service thread 1-6) HCANN000001: Hibernate Commons Annotations {4.0.1.Final} 10:55:13,031 INFO  [org.hibernate.Version] (MSC service thread 1-6) HHH000412: Hibernate Core {4.0.1.Final} 10:55:13,393 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-6) HHH000206: hibernate.properties not found 10:55:13,436 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-6) HHH000021: Bytecode provider name : javassist 10:55:16,120 INFO  [org.hibernate.ejb.Ejb3Configuration] (MSC service thread 1-6) HHH000204: Processing PersistenceUnitInfo [      name: org.jbpm.task.ddl      ...] 10:55:35,271 ERROR [org.reflections.Reflections] (MSC service thread 1-8) could not create Vfs.Dir from url. ignoring the exception and continuing: org.reflections.ReflectionsException: could not create Dir using org.jboss.errai.bus.server.service.metadata.VFSUrlType from url vfs:/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console.war/WEB-INF/classes/      at org.reflections.vfs.Vfs.fromURL(Vfs.java:99) [reflections-0.9.5-RC2_jboss-SP1.jar:]      at org.reflections.vfs.Vfs.fromURL(Vfs.java:89) [reflections-0.9.5-RC2_jboss-SP1.jar:]      at org.reflections.Reflections.scan(Reflections.java:136) [reflections-0.9.5-RC2_jboss-SP1.jar:]      at org.jboss.errai.bus.server.service.metadata.MetaDataScanner.(MetaDataScanner.java:83) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.service.metadata.MetaDataScanner.createInstance(MetaDataScanner.java:95) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.service.metadata.MetaDataScanner.createInstance(MetaDataScanner.java:87) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.service.ErraiServiceConfiguratorImpl.(ErraiServiceConfiguratorImpl.java:58) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.service.ErraiServiceConfiguratorImpl$$FastClassByGuice$$b6139751.newInstance()      at com.google.inject.internal.cglib.reflect.FastConstructor.newInstance(FastConstructor.java:40) [guice-2.0.jar:]      at com.google.inject.DefaultConstructionProxyFactory$1.newInstance(DefaultConstructionProxyFactory.java:60) [guice-2.0.jar:]      at com.google.inject.ConstructorInjector.construct(ConstructorInjector.java:85) [guice-2.0.jar:]      at com.google.inject.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:111) [guice-2.0.jar:]      at com.google.inject.FactoryProxy.get(FactoryProxy.java:56) [guice-2.0.jar:]      at com.google.inject.SingleParameterInjector.inject(SingleParameterInjector.java:42) [guice-2.0.jar:]      at com.google.inject.SingleParameterInjector.getAll(SingleParameterInjector.java:66) [guice-2.0.jar:]      at com.google.inject.ConstructorInjector.construct(ConstructorInjector.java:84) [guice-2.0.jar:]      at com.google.inject.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:111) [guice-2.0.jar:]      at com.google.inject.ProviderToInternalFactoryAdapter$1.call(ProviderToInternalFactoryAdapter.java:45) [guice-2.0.jar:]      at com.google.inject.InjectorImpl.callInContext(InjectorImpl.java:811) [guice-2.0.jar:]      at com.google.inject.ProviderToInternalFactoryAdapter.get(ProviderToInternalFactoryAdapter.java:42) [guice-2.0.jar:]      at com.google.inject.Scopes$1$1.get(Scopes.java:54) [guice-2.0.jar:]      at com.google.inject.InternalFactoryToProviderAdapter.get(InternalFactoryToProviderAdapter.java:48) [guice-2.0.jar:]      at com.google.inject.FactoryProxy.get(FactoryProxy.java:56) [guice-2.0.jar:]      at com.google.inject.InjectorImpl$4$1.call(InjectorImpl.java:758) [guice-2.0.jar:]      at com.google.inject.InjectorImpl.callInContext(InjectorImpl.java:804) [guice-2.0.jar:]      at com.google.inject.InjectorImpl$4.get(InjectorImpl.java:754) [guice-2.0.jar:]      at com.google.inject.InjectorImpl.getInstance(InjectorImpl.java:793) [guice-2.0.jar:]      at org.jboss.errai.bus.server.servlet.AbstractErraiServlet.buildService(AbstractErraiServlet.java:133) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.servlet.AbstractErraiServlet.init(AbstractErraiServlet.java:104) [errai-bus-1.1-Final.jar:1.1-Final]      at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) [jbossweb-7.0.13.Final.jar:]      at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1102) [jbossweb-7.0.13.Final.jar:]      at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3655) [jbossweb-7.0.13.Final.jar:]      at org.apache.catalina.core.StandardContext.start(StandardContext.java:3873) [jbossweb-7.0.13.Final.jar:]      at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentService.java:90) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final]      at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811)      at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746)      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0]      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0]      at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0]  10:55:35,663 ERROR [org.reflections.Reflections] (MSC service thread 1-8) could not create Vfs.Dir from url. ignoring the exception and continuing: org.reflections.ReflectionsException: could not create Dir using org.jboss.errai.bus.server.service.metadata.VFSUrlType from url vfs:/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console.war/WEB-INF/lib/activity-monitor-ui-lib-1.1.1.Final.jar/      at org.reflections.vfs.Vfs.fromURL(Vfs.java:99) [reflections-0.9.5-RC2_jboss-SP1.jar:]      at org.reflections.vfs.Vfs.fromURL(Vfs.java:89) [reflections-0.9.5-RC2_jboss-SP1.jar:]      at org.reflections.Reflections.scan(Reflections.java:136) [reflections-0.9.5-RC2_jboss-SP1.jar:]      at org.jboss.errai.bus.server.service.metadata.MetaDataScanner.(MetaDataScanner.java:83) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.service.metadata.MetaDataScanner.createInstance(MetaDataScanner.java:95) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.service.metadata.MetaDataScanner.createInstance(MetaDataScanner.java:87) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.service.ErraiServiceConfiguratorImpl.(ErraiServiceConfiguratorImpl.java:58) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.service.ErraiServiceConfiguratorImpl$$FastClassByGuice$$b6139751.newInstance()      at com.google.inject.internal.cglib.reflect.FastConstructor.newInstance(FastConstructor.java:40) [guice-2.0.jar:]      at com.google.inject.DefaultConstructionProxyFactory$1.newInstance(DefaultConstructionProxyFactory.java:60) [guice-2.0.jar:]      at com.google.inject.ConstructorInjector.construct(ConstructorInjector.java:85) [guice-2.0.jar:]      at com.google.inject.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:111) [guice-2.0.jar:]      at com.google.inject.FactoryProxy.get(FactoryProxy.java:56) [guice-2.0.jar:]      at com.google.inject.SingleParameterInjector.inject(SingleParameterInjector.java:42) [guice-2.0.jar:]      at com.google.inject.SingleParameterInjector.getAll(SingleParameterInjector.java:66) [guice-2.0.jar:]      at com.google.inject.ConstructorInjector.construct(ConstructorInjector.java:84) [guice-2.0.jar:]      at com.google.inject.ConstructorBindingImpl$Factory.get(ConstructorBindingImpl.java:111) [guice-2.0.jar:]      at com.google.inject.ProviderToInternalFactoryAdapter$1.call(ProviderToInternalFactoryAdapter.java:45) [guice-2.0.jar:]      at com.google.inject.InjectorImpl.callInContext(InjectorImpl.java:811) [guice-2.0.jar:]      at com.google.inject.ProviderToInternalFactoryAdapter.get(ProviderToInternalFactoryAdapter.java:42) [guice-2.0.jar:]      at com.google.inject.Scopes$1$1.get(Scopes.java:54) [guice-2.0.jar:]      at com.google.inject.InternalFactoryToProviderAdapter.get(InternalFactoryToProviderAdapter.java:48) [guice-2.0.jar:]      at com.google.inject.FactoryProxy.get(FactoryProxy.java:56) [guice-2.0.jar:]      at com.google.inject.InjectorImpl$4$1.call(InjectorImpl.java:758) [guice-2.0.jar:]      at com.google.inject.InjectorImpl.callInContext(InjectorImpl.java:804) [guice-2.0.jar:]      at com.google.inject.InjectorImpl$4.get(InjectorImpl.java:754) [guice-2.0.jar:]      at com.google.inject.InjectorImpl.getInstance(InjectorImpl.java:793) [guice-2.0.jar:]      at org.jboss.errai.bus.server.servlet.AbstractErraiServlet.buildService(AbstractErraiServlet.java:133) [errai-bus-1.1-Final.jar:1.1-Final]      at org.jboss.errai.bus.server.servlet.AbstractErraiServlet.init(AbstractErraiServlet.java:104) [errai-bus-1.1-Final.jar:1.1-Final]      at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1202) [jbossweb-7.0.13.Final.jar:]      at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1102) [jbossweb-7.0.13.Final.jar:]      at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3655) [jbossweb-7.0.13.Final.jar:]      at org.apache.catalina.core.StandardContext.start(StandardContext.java:3873) [jbossweb-7.0.13.Final.jar:]      at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentService.java:90) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final]      at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811)      at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746)      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0]      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0]      at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0]  10:55:35,674 WARN  [org.hibernate.service.jdbc.connections.internal.ConnectionProviderInitiator] (MSC service thread 1-6) HHH000181: No appropriate connection provider encountered, assuming application will be supplying connections 10:55:36,591 INFO  [org.jboss.errai.bus.server.service.bootstrap.OrderedBootstrap] (MSC service thread 1-8) Bootstrap Errai 10:55:36,602 INFO  [org.jboss.errai.bus.server.service.bootstrap.DefaultComponents] (MSC service thread 1-8) using dispatcher implementation: org.jboss.errai.bus.server.AsyncDispatcher 10:55:36,996 INFO  [org.jboss.errai.bus.server.WorkerFactory] (MSC service thread 1-8) initializing async worker pools (poolSize: 5; workerTimeout: 5000) 10:55:37,169 INFO  [org.jboss.errai.bus.server.WorkerFactory] (MSC service thread 1-8) starting worker pool. 10:55:37,187 INFO  [org.jboss.errai.bus.server.service.bootstrap.DefaultComponents] (MSC service thread 1-8) using session provider implementation: org.jboss.errai.bus.server.HttpSessionProvider 10:55:37,278 INFO  [org.jboss.errai.bus.server.service.bootstrap.LoadExtensions] (MSC service thread 1-8) beging searching for Errai extensions ... 10:55:37,305 INFO  [org.jboss.errai.bus.server.service.bootstrap.LoadExtensions] (MSC service thread 1-8) added extension binding: org.jboss.errai.bus.client.framework.ModelAdapter 10:55:37,327 INFO  [org.jboss.errai.bus.server.service.bootstrap.LoadExtensions] (MSC service thread 1-8) total extension binding: 1 10:55:37,507 INFO  [org.jboss.errai.bus.server.service.bootstrap.BootstrapContext] (MSC service thread 1-8) Running deferred bootstrap tasks ... 10:55:37,529 INFO  [org.jboss.errai.bus.server.service.bootstrap.OrderedBootstrap] (MSC service thread 1-8) Bootstrap complete. Ready to rumble! 10:55:37,671 INFO  [org.hibernate.dialect.Dialect] (MSC service thread 1-6) HHH000400: Using dialect: org.hibernate.dialect.MySQLDialect 10:55:37,786 INFO  [org.hibernate.engine.jdbc.internal.LobCreatorBuilder] (MSC service thread 1-6) HHH000422: Disabling contextual LOB creation as connection was null 10:55:37,820 INFO  [org.jboss.web] (MSC service thread 1-8) JBAS018210: Registering web context: /jbpm-console 10:55:37,889 INFO  [org.hibernate.engine.transaction.internal.TransactionFactoryInitiator] (MSC service thread 1-6) HHH000268: Transaction strategy: org.hibernate.engine.transaction.internal.jdbc.JdbcTransactionFactory 10:55:38,740 INFO  [org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory] (MSC service thread 1-6) HHH000397: Using ASTQueryTranslatorFactory 10:55:38,997 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015870: Deploy of deployment "jbpm-human-task-war.war" was rolled back with failure message Operation cancelled 10:55:39,011 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015871: Deploy of deployment "jbpm-gwt-console.war" was rolled back with no failure message 10:55:39,025 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015871: Deploy of deployment "jbpm-gwt-console-server.war" was rolled back with no failure message 10:55:38,998 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment. 10:55:39,067 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015871: Deploy of deployment "jbpm-form-builder.war" was rolled back with no failure message 10:55:39,101 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015871: Deploy of deployment "drools-guvnor.war" was rolled back with no failure message 10:55:39,127 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015871: Deploy of deployment "designer.war" was rolled back with no failure message 10:55:39,130 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment. 10:55:39,184 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment. 10:55:39,225 INFO  [org.hibernate.validator.util.Version] (MSC service thread 1-6) Hibernate Validator 4.2.0.Final 10:55:39,295 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment. 10:55:39,368 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment. 10:55:39,450 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment. 10:55:44,195 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015877: Stopped deployment jbpm-gwt-console.war in 5146ms 10:55:52,027 INFO  [org.hibernate.tool.hbm2ddl.SchemaUpdate] (MSC service thread 1-6) HHH000228: Running hbm2ddl schema update 10:55:52,031 INFO  [org.hibernate.tool.hbm2ddl.SchemaUpdate] (MSC service thread 1-6) HHH000102: Fetching database metadata 10:55:52,035 ERROR [org.hibernate.tool.hbm2ddl.SchemaUpdate] (MSC service thread 1-6) HHH000299: Could not complete schema update: java.lang.UnsupportedOperationException: The application must supply JDBC connections      at org.hibernate.service.jdbc.connections.internal.UserSuppliedConnectionProviderImpl.getConnection(UserSuppliedConnectionProviderImpl.java:62) [hibernate-core-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.tool.hbm2ddl.SuppliedConnectionProviderConnectionHelper.prepare(SuppliedConnectionProviderConnectionHelper.java:51) [hibernate-core-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:194) [hibernate-core-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:178) [hibernate-core-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:457) [hibernate-core-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1737) [hibernate-core-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.ejb.EntityManagerFactoryImpl.(EntityManagerFactoryImpl.java:84) [hibernate-entitymanager-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:904) [hibernate-entitymanager-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:889) [hibernate-entitymanager-4.0.1.Final.jar:4.0.1.Final]      at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:73) [hibernate-entitymanager-4.0.1.Final.jar:4.0.1.Final]      at org.jboss.as.jpa.service.PersistenceUnitServiceImpl.createContainerEntityManagerFactory(PersistenceUnitServiceImpl.java:162) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final]      at org.jboss.as.jpa.service.PersistenceUnitServiceImpl.start(PersistenceUnitServiceImpl.java:85) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final]      at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811)      at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746)      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0]      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0]      at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0]  10:55:53,749 WARN  [org.hibernate.internal.SessionFactoryImpl] (MSC service thread 1-6) HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession() 10:56:04,369 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry avalon-framework-4.2.0.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,377 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry batik-all-1.7.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,383 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry commons-io-1.3.1.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,391 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry serializer-2.7.0.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,402 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry servlet-2.2.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,413 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xalan-2.7.0.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,421 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xercesImpl-2.7.1.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,431 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xml-apis-ext-1.3.04.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,441 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xmlgraphics-commons-1.3.1.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,452 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry fop-hyph.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,463 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jai_codec.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,477 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jai_core.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,493 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jai_imageio.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,504 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jimi-1.0.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,513 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xmlunit1.0.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/fop-0.95.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,524 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,535 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,544 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,554 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jaxb1-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-impl-2.2.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,565 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-xjc-2.1.13.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,573 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jaxb-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-xjc-2.1.13.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,647 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-xjc-2.1.13.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,657 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jaxb-xjc-2.1.13.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,671 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xml-apis-1.0.b2.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.11.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,686 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry commons-lang-2.6.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.11.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,699 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry commons-io-2.1.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.11.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,708 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry log4j-1.2.16.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/jbpmmigration-0.11.jar"  does not point to a valid jar for a Class-Path reference. 10:56:04,726 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/mail-1.4.1.jar"  does not point to a valid jar for a Class-Path reference. 10:56:06,721 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xml-apis.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/serializer-2.7.1.jar"  does not point to a valid jar for a Class-Path reference. 10:56:07,087 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xercesImpl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference. 10:56:07,097 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry xml-apis.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference. 10:56:07,110 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) Class Path entry serializer.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/designer.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference. 10:56:07,855 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015893: Encountered invalid class name 'org.springframework.context.ApplicationContext,org.springframework.beans.BeansException' for service type 'org.apache.cxf.bus.factory' 10:56:07,862 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory' 10:56:11,748 INFO  [org.jboss.as.jpa] (MSC service thread 1-6) JBAS011403: Stopping Persistence Unit Service 'jbpm-human-task-war.war#org.jbpm.task.ddl' 10:56:13,885 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment jbpm-human-task-war.war in 34836ms 10:56:16,516 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015877: Stopped deployment designer.war in 37378ms 10:56:18,086 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_cs.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,093 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_de_DE.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,099 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_es.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,105 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_fr.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,109 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_hu.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,112 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_it.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,116 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_ja_JP.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,120 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_ko_KR.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,124 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_pl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,128 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_pt_BR.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,132 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_ru.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,137 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_zh_CN.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,143 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry derbyLocale_zh_TW.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/derby.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,152 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,158 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,164 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,170 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb1-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,174 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,179 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,183 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,187 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,192 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console-server.war/WEB-INF/lib/mail-1.4.jar"  does not point to a valid jar for a Class-Path reference. 10:56:18,783 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015893: Encountered invalid class name 'org.springframework.context.ApplicationContext,org.springframework.beans.BeansException' for service type 'org.apache.cxf.bus.factory' 10:56:18,823 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory' 10:56:18,834 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory' 10:56:18,864 INFO  [org.jboss.as.jpa] (MSC service thread 1-8) JBAS011401: Read persistence.xml for org.jbpm.persistence.jpa.ddl 10:56:23,582 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015877: Stopped deployment jbpm-gwt-console-server.war in 44533ms 10:57:15,248 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_cs.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,252 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_de_DE.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,256 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_es.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,262 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_fr.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,267 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_hu.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,272 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_it.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,276 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_ja_JP.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,283 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_ko_KR.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,287 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_pl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,291 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_pt_BR.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,294 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_ru.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,298 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_zh_CN.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,302 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry derbyLocale_zh_TW.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/derby-10.5.3.0_1.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,307 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry iText-toolbox.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/itext-2.1.2.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,311 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry iText-toolbox-2.1.2.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/itext-2.1.2.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,316 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,321 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,324 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,330 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jaxb1-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,335 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.0EA3.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,339 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jaxb-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.0EA3.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,342 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.0EA3.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,346 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.0EA3.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,349 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,353 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jaxb-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,356 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,360 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/jaxb-xjc-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,365 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-1) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/drools-guvnor.war/WEB-INF/lib/mail-1.4.jar"  does not point to a valid jar for a Class-Path reference. 10:57:15,460 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.ConfigurableArchiveImpl' for service type 'org.jboss.shrinkwrap.spi.Configurable' 10:57:15,467 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.GenericArchiveImpl' for service type 'org.jboss.shrinkwrap.api.GenericArchive' 10:57:15,473 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.jar' for service type 'org.jboss.shrinkwrap.api.GenericArchive' 10:57:15,478 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'archiveFormat=UNKNOWN' for service type 'org.jboss.shrinkwrap.api.GenericArchive' 10:57:15,483 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.serialization.ZipSerializableViewImpl' for service type 'org.jboss.shrinkwrap.api.serialization.SerializableView' 10:57:15,494 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.spec.JavaArchiveImpl' for service type 'org.jboss.shrinkwrap.api.spec.JavaArchive' 10:57:15,500 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.jar' for service type 'org.jboss.shrinkwrap.api.spec.JavaArchive' 10:57:15,505 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'archiveFormat=ZIP' for service type 'org.jboss.shrinkwrap.api.spec.JavaArchive' 10:57:15,511 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.exporter.tar.TarExporterImpl' for service type 'org.jboss.shrinkwrap.api.exporter.TarExporter' 10:57:15,515 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.tar' for service type 'org.jboss.shrinkwrap.api.exporter.TarExporter' 10:57:15,518 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.importer.zip.ZipImporterImpl' for service type 'org.jboss.shrinkwrap.api.importer.ZipImporter' 10:57:15,522 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.jar' for service type 'org.jboss.shrinkwrap.api.importer.ZipImporter' 10:57:15,525 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.importer.tar.TarImporterImpl' for service type 'org.jboss.shrinkwrap.api.importer.TarImporter' 10:57:15,529 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.tar' for service type 'org.jboss.shrinkwrap.api.importer.TarImporter' 10:57:15,531 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.spec.WebArchiveImpl' for service type 'org.jboss.shrinkwrap.api.spec.WebArchive' 10:57:15,537 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.war' for service type 'org.jboss.shrinkwrap.api.spec.WebArchive' 10:57:15,539 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'archiveFormat=ZIP' for service type 'org.jboss.shrinkwrap.api.spec.WebArchive' 10:57:15,542 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.exporter.tar.TarGzExporterImpl' for service type 'org.jboss.shrinkwrap.api.exporter.TarGzExporter' 10:57:15,546 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.tar.gz' for service type 'org.jboss.shrinkwrap.api.exporter.TarGzExporter' 10:57:15,549 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.serialization.ZipSerializableViewImpl' for service type 'org.jboss.shrinkwrap.api.serialization.ZipSerializableView' 10:57:15,553 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.importer.ExplodedImporterImpl' for service type 'org.jboss.shrinkwrap.api.importer.ExplodedImporter' 10:57:15,557 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.exporter.ExplodedExporterImpl' for service type 'org.jboss.shrinkwrap.api.exporter.ExplodedExporter' 10:57:15,562 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.spec.EnterpriseArchiveImpl' for service type 'org.jboss.shrinkwrap.api.spec.EnterpriseArchive' 10:57:15,565 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.ear' for service type 'org.jboss.shrinkwrap.api.spec.EnterpriseArchive' 10:57:15,568 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'archiveFormat=ZIP' for service type 'org.jboss.shrinkwrap.api.spec.EnterpriseArchive' 10:57:15,571 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.spec.ResourceAdapterArchiveImpl' for service type 'org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive' 10:57:15,575 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.rar' for service type 'org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive' 10:57:15,578 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'archiveFormat=ZIP' for service type 'org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive' 10:57:15,581 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.importer.tar.TarGzImporterImpl' for service type 'org.jboss.shrinkwrap.api.importer.TarGzImporter' 10:57:15,585 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'extension=.tar.gz' for service type 'org.jboss.shrinkwrap.api.importer.TarGzImporter' 10:57:15,587 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'implementingClassName=org.jboss.shrinkwrap.impl.base.exporter.zip.ZipExporterImpl' for service type 'org.jboss.shrinkwrap.api.exporter.ZipExporter' 10:57:15,592 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory' 10:57:20,292 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015877: Stopped deployment drools-guvnor.war in 101155ms 10:57:22,725 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry iText-toolbox.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-form-builder.war/WEB-INF/lib/itext-2.1.2.jar"  does not point to a valid jar for a Class-Path reference. 10:57:22,732 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry iText-toolbox-2.1.2.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-form-builder.war/WEB-INF/lib/itext-2.1.2.jar"  does not point to a valid jar for a Class-Path reference. 10:57:22,738 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry jaxb-api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-form-builder.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:22,747 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry activation.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-form-builder.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:22,753 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry jsr173_1.0_api.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-form-builder.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:22,758 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Class Path entry jaxb1-impl.jar in "/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-form-builder.war/WEB-INF/lib/jaxb-impl-2.2.5.jar"  does not point to a valid jar for a Class-Path reference. 10:57:22,791 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'org.xmlpull.mxp1.MXParser,org.xmlpull.mxp1_serializer.MXSerializer' for service type 'org.xmlpull.v1.XmlPullParserFactory' 10:57:24,237 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015877: Stopped deployment jbpm-form-builder.war in 105165ms 11:14:25,419 INFO  [org.jboss.as.messaging] (MSC service thread 1-6) JBAS011605: Unbound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory 11:14:25,426 INFO  [org.jboss.as.messaging] (MSC service thread 1-6) JBAS011605: Unbound messaging object to jndi name java:/RemoteConnectionFactory 11:14:25,446 INFO  [org.jboss.as.osgi] (MSC service thread 1-7) JBAS011942: Stopping OSGi Framework 11:14:25,455 INFO  [org.jboss.as.messaging] (MSC service thread 1-6) JBAS011605: Unbound messaging object to jndi name java:/topic/test 11:14:25,462 INFO  [org.jboss.as.messaging] (MSC service thread 1-6) JBAS011605: Unbound messaging object to jndi name java:jboss/exported/jms/topic/test
--------------------------------------------------
Thomas Setiabudi
2013-01-26 00:00:24 UTC
Permalink
Thomas Setiabudi [https://community.jboss.org/people/thomas.setiabudi] commented on the document

"Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS"

To view all comments on this document, visit: https://community.jboss.org/docs/DOC-47975#comment-11475

--------------------------------------------------
I see you got this error in your server.log
10:55:39,130 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [60 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment.

Can you try increasing the timeout in your jboss AS standalone.xml?
this was the default:
<deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="300"/>

If you still got problem deploying, I think its better to open a new forum discussion so that others will see and give solution.

Regards,
Thomas Setiabudi
--------------------------------------------------
Lisa DeSouza
2013-01-28 11:13:35 UTC
Permalink
Lisa DeSouza [https://community.jboss.org/people/lisadesouza89] commented on the document

"Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS"

To view all comments on this document, visit: https://community.jboss.org/docs/DOC-47975#comment-11478

--------------------------------------------------
Ok, so for now I'm trying your tutorial exactly, using JTDS and MSSQL, neither of which I am very familiar with.I have installed MSSQL 2008 Express successfully and am able to connect to it using the SQL Management Tool. However, when I use the same credentials within this install I get:

     [java] java.sql.SQLException: Network error IOException: Connection refused: connect
     [java]     at net.sourceforge.jtds.jdbc.JtdsConnection.<init>(JtdsConnection.java:434)

Do you have any ideas for me?
--------------------------------------------------
Thomas Setiabudi
2013-01-28 11:26:29 UTC
Permalink
Thomas Setiabudi [https://community.jboss.org/people/thomas.setiabudi] commented on the document

"Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS"

To view all comments on this document, visit: https://community.jboss.org/docs/DOC-47975#comment-11479

--------------------------------------------------
That means you got problem with the connection string setting,
Either you cannot reach the database or you key in wrong configuration for database connection
--------------------------------------------------
Lisa DeSouza
2013-01-28 11:42:26 UTC
Permalink
Lisa DeSouza [https://community.jboss.org/people/lisadesouza89] commented on the document

"Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS"

To view all comments on this document, visit: https://community.jboss.org/docs/DOC-47975#comment-11480

--------------------------------------------------
ok, thanks a lot. Figured it out. Had the database server running as a local service instead of network service. :)

But still loads of errors on jbpm-console: :(
* ERROR [org.reflections.Reflections] (MSC service thread 1-6) could not create Vfs.Dir from url. ignoring the exception and continuing: org.reflections.ReflectionsException: could not create Dir using org.jboss.errai.bus.server.service.metadata.VFSUrlType from url vfs:/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console.war/WEB-INF/classes/ at org.reflections.vfs.Vfs.fromURL(Vfs.java:99)
* ERROR [org.reflections.Reflections] (MSC service thread 1-6) could not create Vfs.Dir from url. ignoring the exception and continuing: org.reflections.ReflectionsException: could not create Dir using org.jboss.errai.bus.server.service.metadata.VFSUrlType from url vfs:/E:/CIBIL-JBPM/jbpm-installer/content/jbpm-gwt-console.war/WEB-INF/lib/activity-monitor-ui-lib-1.1.1.Final.jar/ at org.reflections.vfs.Vfs.fromURL(Vfs.java:99)
* ERROR [org.hibernate.tool.hbm2ddl.SchemaUpdate] (MSC service thread 1-5) HHH000299: Could not complete schema update: java.lang.UnsupportedOperationException: The application must supply JDBC connections  at org.hibernate.service.jdbc.connections.internal.UserSuppliedConnectionProviderImpl.getConnection(UserSuppliedConnectionProviderImpl.java:62)
* ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/jbpm-human-task-war]] (MSC service thread 1-5) StandardWrapper.Throwable: javax.persistence.PersistenceException: No Persistence provider for EntityManager named org.jbpm.task
* ERROR [org.jbpm.integration.console.StatefulKnowledgeSessionUtil] (http-localhost-127.0.0.1-8080-5) Could not initialize stateful knowledge session: No Persistence provider for EntityManager named org.jbpm.persistence.jpa: javax.persistence.PersistenceException: No Persistence provider for EntityManager named org.jbpm.persistence.jpa at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:69)
* ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/gwt-console-server].[Resteasy]] (http-localhost-127.0.0.1-8080-5) Servlet.service() for servlet Resteasy threw exception: org.jboss.resteasy.spi.UnhandledException: java.lang.RuntimeException: Session was not initialized, check previous errors in log at org.jboss.resteasy.core.SynchronousDispatcher.handleApplicationException(SynchronousDispatcher.java:340) [resteasy-jaxrs-2.3.2.Final.jar:]

But at least with MSSQL the applications deploy. Sorry to be such a pain and keep asking questions.
--------------------------------------------------

Loading...