1 2 Previous Next 19 Replies Latest reply on Jul 26, 2006 10:13 AM by kukeltje

    MYSQL database connection within JBoss application(using JSF

    ccelgun

      I hope i am writing this question into the correct place.
      I am trying to make an application with JBoss. I have to establish connection with MYSQL database.I found some articles about how to connect to MYSQL database and i believe that i did everything correct.
      But this error message is shown on the web browser after i ran the program.

      Exception :
      javax.servlet.ServletException : Cannot get value for expression '#{homeBean.taskInstances}'
      javax.faces.webapp.FacesServlet.service(FacesServlet.java:109)
      org.jbpm.webapp.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:55)
      org.jbpm.web.JbpmContextFilter.doFilter(JbpmContextFilter.java:83)
      org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:59)
      org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)

      root cause:
      javax.faces.facesException: Cannot get value for expression '#{homeBean.taskInstances}'
      org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:421)
      org.apache.myfaces.application.jsp.JspViewhandlerImpl.renderView(JspViewHandlerImpl.java:234)
      org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
      javax.faces.webapp.FacesServlet.service(facesServlet.java:95)
      <brZorg.jbpm.webapp.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:55)
      org.jbpm.web.JbpmContextFilter.doFilter(JbpmContextFilter.java:83)
      org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:59)
      org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)

        • 1. Same error different solutions ??
          ccelgun

          I have seen a message with the same error message in this forum, but my goal is different from that. I think that the problem in my code occurs while connecting to MYSQL database.
          I would be gratefull if anybody helps me. I must be careless at some point but i couldn't make it out.
          I really need a different opinion.

          Thanks..

          • 2. Re: MYSQL database connection within JBoss application(using
            newbie007

            I used to get that message. Make sure that you have users in the jbpm_id_user table. Look at the console to see if hibernate is able to connect to your database etc.

            If users are not there then use following insert sqls for inserting into jbpm_id_user table (hopefully you didn't change jbpm tables)

            insert into JBPM_ID_USER (ID_, CLASS_, NAME_, EMAIL_, PASSWORD_)
             values ('1', 'U', 'cookie monster', 'cookie.monster@sesamestreet.tv', 'crunchcrunch');
            insert into JBPM_ID_USER (ID_,CLASS_, NAME_, EMAIL_, PASSWORD_)
             values ('2', 'U', 'ernie', 'ernie@sesamestreet.tv', 'canthereyoubert,theresabananainmyear');
            insert into JBPM_ID_USER (ID_,CLASS_, NAME_, EMAIL_, PASSWORD_)
             values ('3', 'U', 'bert', 'bert@sesamestreet.tv', 'ernie,theresabananainyourear');
            insert into JBPM_ID_USER (ID_,CLASS_, NAME_, EMAIL_, PASSWORD_)
             values ('4', 'U', 'grover', 'grover@sesamestreet.tv', 'mayday mayday');


            Thanks.

            • 3. Re: MYSQL database connection within JBoss application(using
              ccelgun

              OK i'll try that. Will be back with the results soon.

              Thank you so much for your attention...

              • 4. Re: MYSQL database connection within JBoss application(using
                ccelgun

                Well...I examined my code according to the things @newbie007 has said and found out that i'm trying to get the data that contains nothing at the beginning.

                I have users and some abilities assigned to them. At the beginning no ability is assigned.I am sure that the program connects to the database correctly and users do exist.The problem appears while i'm trying to get users' abilities which are empty at the beginning.<They will be assigned later>


                As i am not familiar to this environment, i dont know how to handle this exception.I must get this data at the beginning whether it is empty or not.

                What i need at this point is to handle this exception.I hope someone can help me.

                I am looking forward to any reply..

                • 5. Re: MYSQL database connection within JBoss application(using
                  remider

                  i connected successfully with MYSQL. Have you creat table for your MySQL?
                  JBPM not creat table automatic for MySQL.
                  Rem.

                  • 6. Re: MYSQL database connection within JBoss application(using
                    ccelgun

                     

                    "Remider" wrote:
                    Have you creat table for your MySQL?
                    JBPM not creat table automatic for MySQL.
                    Rem.

                    I didn't understand it very well..Do you mean that before using an existing table in my MYSQL database, I have to create the same table in jBPM like a view table ??
                    So you say actually empty fields in the database do not cause problems ??

                    Thanks for your attention..I am looking forward to next one..

                    • 7. Re: MYSQL database connection within JBoss application(using
                      ccelgun

                       

                      I have users and some abilities assigned to them. At the beginning no ability is assigned.I am sure that the program connects to the database correctly and users do exist.The problem appears while i'm trying to get users' abilities which are empty at the beginning.<They will be assigned later>


                      I am stocked at this point...May the problem occur because of the empty fields?

                      • 8. Re: MYSQL database connection within JBoss application(using
                        newbie007

                        Hi,

                        1 First of all, make sure you have jbpm schema created in your database (all jbpm tables).

                        2. Check the jbpm_id_user table to see if there are user exists.

                        3. Try to access the web app through the browser. Are you getting the login page with populated user dropdown? or page itself is not coming or page is coming but with no user in the drop down list box?

                        4. Check if hibernate is able to connect to your database or not (look at the console to see hibernate messages).

                        Let me know if above steps help.

                        Thanks.

                        • 9. Re: MYSQL database connection within JBoss application(using
                          kukeltje

                          ccelgun,

                          You did find the right forum, but I do think you should post a stacktrace from the server log (as mentioned in other very similar posts) In many cases there is more info in there and the cause can be very different.

                          • 10. Re: MYSQL database connection within JBoss application(using
                            kukeltje

                            ccelgun,

                            You did find the right forum, but I do think you should post a stacktrace from the server log (as mentioned in other very similar posts) In many cases there is more info in there and the cause can be very different.

                            • 11. Re: MYSQL database connection within JBoss application(using
                              gkestor

                              Thanks everyone for your attention.It was really helpfull. Before going on, i must tell that ccelgun was a friend of mine that wrote the questions for me as i was unable to connect to internet for some time.I'm the one that deals with the project.

                              @newbie007 thank you for your great help.I'll try the things you said step by step.Will report back the results.As it's really late here, i'm not able to try now although i'm really curious about it.

                              @kukeltje thank you for your attention.It'll be my first job if problem still continues after applying @newbie007 's steps.

                              Thanks again...

                              • 12. Re: MYSQL database connection within JBoss application(using
                                gkestor

                                I have followed the steps told by @newbie007, but the same problem still exists. So i'm posting a stacktrace from server log as @kukeltje wanted. It's a bit long. So i will split it into more than one post.

                                • 13. Re: MYSQL database connection within JBoss application(using
                                  gkestor

                                  {\rtf1\ansi\ansicpg1254\deff0\deflang1055{\fonttbl{\f0\fnil Courier
                                  New;}{\f1\fswiss\fcharset162{\*\fname Arial;}Arial TUR;}}
                                  {\colortbl
                                  ;\red0\green0\blue0;\red255\green255\blue255;\red0\green0\blue128;}
                                  {\*\generator Msftedit
                                  5.41.15.1507;}\viewkind4\uc1\pard\cf1\highlight2\f0\fs20 08:49:44,990 INFO [Server] Starting JBoss (MX
                                  MicroKernel)...\cf0\highlight0\par
                                  \cf1\highlight2 08:49:44,990 INFO [Server] Release ID: JBoss [Zion]
                                  4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1
                                  date=200510231054)\cf0\highlight0\par
                                  \cf1\highlight2 08:49:44,990 INFO [Server] Home Dir: C:\\Documents and
                                  Settings\\Sertac\\Desktop\\Proje4\\jbpm-starters-kit-3.1.1\\jbpm-server\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,000 INFO [Server] Home URL:
                                  file:/C:/Documents and
                                  Settings/Sertac/Desktop/Proje4/jbpm-starters-kit-3.1.1/jbpm-server/\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,000 INFO [Server] Patch URL:
                                  null\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,000 INFO [Server] Server Name:
                                  jbpm\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,000 INFO [Server] Server Home Dir:
                                  C:\\Documents and
                                  Settings\\Sertac\\Desktop\\Proje4\\jbpm-starters-kit-3.1.1\\jbpm-server\\server\\jbpm\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,000 INFO [Server] Server Home URL:
                                  file:/C:/Documents and
                                  Settings/Sertac/Desktop/Proje4/jbpm-starters-kit-3.1.1/jbpm-server/server/jbpm/\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,000 INFO [Server] Server Temp Dir:
                                  C:\\Documents and
                                  Settings\\Sertac\\Desktop\\Proje4\\jbpm-starters-kit-3.1.1\\jbpm-server\\server\\jbpm\\tmp\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,000 INFO [Server] Root Deployment Filename:
                                  jboss-service.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,921 INFO [ServerInfo] Java version:
                                  1.5.0_06,Sun Microsystems Inc.\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,921 INFO [ServerInfo] Java VM: Java
                                  HotSpot(TM) Client VM 1.5.0_06-b05,Sun Microsystems Inc.\cf0\highlight0\par
                                  \cf1\highlight2 08:49:45,921 INFO [ServerInfo] OS-System: Windows XP
                                  5.1,x86\cf0\highlight0\par
                                  \cf1\highlight2 08:49:47,714 INFO [Server] Core system
                                  initialized\cf0\highlight0\par
                                  \cf1\highlight2 08:49:52,561 INFO [WebService] Using RMI server
                                  codebase: http://sertac_anadollu:8083/\cf0\highlight0\par
                                  \cf1\highlight2
                                  08:49:52,631 INFO [Log4jService$URLWatchTimerTask] Configuring from URL:
                                  resource:log4j.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:49:53,993 INFO [NamingService] Started jndi
                                  bootstrap jnpPort=1099, rmiPort=1098, backlog=50, bindAddress=/0.0.0.0, Client
                                  SocketFactory=null, Server
                                  SocketFactory=org.jboss.net.sockets.DefaultSocketFactory@ad093076\cf0\highlight0\par
                                  \cf1\highlight2 08:50:06,241 INFO [Embedded] Catalina naming
                                  disabled\cf0\highlight0\par
                                  \cf1\highlight2 08:50:07,402 INFO [Http11Protocol] Initializing Coyote
                                  HTTP/1.1 on http-0.0.0.0-8080\cf0\highlight0\par
                                  \cf1\highlight2 08:50:07,402 INFO [Catalina] Initialization processed
                                  in 1021 ms\cf0\highlight0\par
                                  \cf1\highlight2 08:50:07,412 INFO [StandardService] Starting service
                                  jboss.web\cf0\highlight0\par
                                  \cf1\highlight2 08:50:07,442 INFO [StandardEngine] Starting Servlet
                                  Engine: Apache Tomcat/5.5\cf0\highlight0\par
                                  \cf1\highlight2 08:50:07,553 INFO [StandardHost] XML validation
                                  disabled\cf0\highlight0\par
                                  \cf1\highlight2 08:50:07,633 INFO [Catalina] Server startup in 231
                                  ms\cf0\highlight0\par
                                  \cf1\highlight2 08:50:08,073 INFO [TomcatDeployer] deploy,
                                  ctxPath=/invoker,
                                  warUrl=.../deploy/http-invoker.sar/invoker.war/\cf0\highlight0\par
                                  \cf1\highlight2 08:50:09,595 INFO [WebappLoader] Dual registration of
                                  jndi stream handler: factory already defined\cf0\highlight0\par
                                  \cf1\highlight2 08:50:11,148 INFO [TomcatDeployer] deploy, ctxPath=/,
                                  warUrl=.../deploy/jbossweb-tomcat55.sar/ROOT.war/\cf0\highlight0\par
                                  \cf1\highlight2 08:50:13,261 INFO [TomcatDeployer] deploy,
                                  ctxPath=/jbossmq-httpil,
                                  warUrl=.../deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/\cf0\highlight0\par
                                  \cf1\highlight2 08:50:18,879 INFO [RARDeployment] Required license
                                  terms exist, view META-INF/ra.xml in
                                  .../deploy/jboss-local-jdbc.rar\cf0\highlight0\par
                                  \cf1\highlight2 08:50:19,199 INFO [RARDeployment] Required license
                                  terms exist, view META-INF/ra.xml in
                                  .../deploy/jboss-xa-jdbc.rar\cf0\highlight0\par
                                  \cf1\highlight2 08:50:19,570 INFO [RARDeployment] Required license
                                  terms exist, view META-INF/ra.xml in
                                  .../deploy/jms/jms-ra.rar\cf0\highlight0\par
                                  \cf1\highlight2 08:50:21,112 INFO [ConnectionFactoryBindingService]
                                  Bound ConnectionManager
                                  'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:21,523 DEBUG [JbpmService] Creating
                                  jboss.jbpm:name=DefaultJbpm,service=JbpmService\cf0\highlight0\par
                                  \cf1\highlight2 08:50:21,523 DEBUG [JbpmService] Created
                                  jboss.jbpm:name=DefaultJbpm,service=JbpmService\cf0\highlight0\par
                                  \cf1\highlight2 08:50:21,643 INFO [ConnectionFactoryBindingService]
                                  Bound ConnectionManager
                                  'jboss.jca:service=DataSourceBinding,name=MySqlDS' to JNDI name 'java:MySqlDS'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,115 ERROR
                                  [GeneralPurposeDatabasePersistencePlugin] Cannot create timer table\cf0\highlight0\par
                                  \cf3\highlight2\ul java.lang.IllegalStateException\cf1\ulnone : Cannot
                                  obtain type mapping from:
                                  jboss.jdbc:datasource=MySqlDS,service=metadata\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.ejb.txtimer.GeneralPurposeDatabasePersistencePlugin.createTableIfNotExists(\cf3\ul
                                  GeneralPurposeDatabasePersistencePlugin.java:97\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.ejb.txtimer.DatabasePersistencePolicy.startService(\cf3\ul DatabasePersistencePolicy.java:96\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.system.ServiceMBeanSupport.jbossInternalStart(\cf3\ul ServiceMBeanSupport.java:274\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.system.ServiceMBeanSupport.start(\cf3\ul ServiceMBeanSupport.java:181\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.NativeMethodAccessorImpl.invoke0(\cf3\ul Native Method\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at java.lang.reflect.Method.invoke(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ReflectedDispatcher.invoke(\cf3\ul ReflectedDispatcher.java:141\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.dispatch(\cf3\ul
                                  Invocation.java:80\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:72\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.AbstractMBeanInvoker.invoke(\cf3\ul AbstractMBeanInvoker.java:245\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.MBeanServerImpl.invoke(\cf3\ul MBeanServerImpl.java:644\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.system.ServiceController$ServiceProxy.invoke(\cf3\ul ServiceController.java:960\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at $Proxy0.start(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.system.ServiceController.start(\cf3\ul
                                  ServiceController.java:428\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.system.ServiceController.start(\cf3\ul
                                  ServiceController.java:446\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.system.ServiceController.start(\cf3\ul
                                  ServiceController.java:446\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.system.ServiceController.start(\cf3\ul
                                  ServiceController.java:446\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.system.ServiceController.start(\cf3\ul
                                  ServiceController.java:446\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at java.lang.reflect.Method.invoke(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ReflectedDispatcher.invoke(\cf3\ul ReflectedDispatcher.java:141\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.dispatch(\cf3\ul
                                  Invocation.java:80\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:72\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.AbstractMBeanInvoker.invoke(\cf3\ul AbstractMBeanInvoker.java:245\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.MBeanServerImpl.invoke(\cf3\ul MBeanServerImpl.java:644\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.util.MBeanProxyExt.invoke(\cf3\ul
                                  MBeanProxyExt.java:176\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at $Proxy4.start(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.SARDeployer.start(\cf3\ul
                                  SARDeployer.java:285\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.NativeMethodAccessorImpl.invoke0(\cf3\ul Native Method\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at java.lang.reflect.Method.invoke(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ReflectedDispatcher.invoke(\cf3\ul ReflectedDispatcher.java:141\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.dispatch(\cf3\ul
                                  Invocation.java:80\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.AbstractInterceptor.invoke(\cf3\ul AbstractInterceptor.java:118\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:74\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(\cf3\ul
                                  ModelMBeanOperationInterceptor.java:127\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:74\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.AbstractMBeanInvoker.invoke(\cf3\ul AbstractMBeanInvoker.java:245\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.MBeanServerImpl.invoke(\cf3\ul MBeanServerImpl.java:644\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.util.JMXInvocationHandler.invoke(\cf3\ul JMXInvocationHandler.java:273\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at $Proxy32.start(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.deployment.XSLSubDeployer.start(\cf3\ul XSLSubDeployer.java:185\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.MainDeployer.start(\cf3\ul
                                  MainDeployer.java:989\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.MainDeployer.deploy(\cf3\ul
                                  MainDeployer.java:790\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.MainDeployer.deploy(\cf3\ul
                                  MainDeployer.java:753\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.GeneratedMethodAccessor49.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at java.lang.reflect.Method.invoke(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ReflectedDispatcher.invoke(\cf3\ul ReflectedDispatcher.java:141\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.dispatch(\cf3\ul
                                  Invocation.java:80\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.AbstractInterceptor.invoke(\cf3\ul AbstractInterceptor.java:118\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:74\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(\cf3\ul
                                  ModelMBeanOperationInterceptor.java:127\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:74\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.AbstractMBeanInvoker.invoke(\cf3\ul AbstractMBeanInvoker.java:245\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.MBeanServerImpl.invoke(\cf3\ul MBeanServerImpl.java:644\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.util.MBeanProxyExt.invoke(\cf3\ul
                                  MBeanProxyExt.java:176\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at $Proxy9.deploy(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.deployment.scanner.URLDeploymentScanner.deploy(\cf3\ul URLDeploymentScanner.java:319\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.deployment.scanner.URLDeploymentScanner.scan(\cf3\ul URLDeploymentScanner.java:507\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(\cf3\ul
                                  AbstractDeploymentScanner.java:192\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(\cf3\ul
                                  AbstractDeploymentScanner.java:265\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.system.ServiceMBeanSupport.jbossInternalStart(\cf3\ul ServiceMBeanSupport.java:274\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(\cf3\ul ServiceMBeanSupport.java:230\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at java.lang.reflect.Method.invoke(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ReflectedDispatcher.invoke(\cf3\ul ReflectedDispatcher.java:141\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.dispatch(\cf3\ul
                                  Invocation.java:80\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:72\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.AbstractMBeanInvoker.invoke(\cf3\ul AbstractMBeanInvoker.java:245\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.MBeanServerImpl.invoke(\cf3\ul MBeanServerImpl.java:644\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.system.ServiceController$ServiceProxy.invoke(\cf3\ul ServiceController.java:943\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at $Proxy0.start(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.system.ServiceController.start(\cf3\ul
                                  ServiceController.java:428\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at java.lang.reflect.Method.invoke(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ReflectedDispatcher.invoke(\cf3\ul ReflectedDispatcher.java:141\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.dispatch(\cf3\ul
                                  Invocation.java:80\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:72\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.AbstractMBeanInvoker.invoke(\cf3\ul AbstractMBeanInvoker.java:245\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.MBeanServerImpl.invoke(\cf3\ul MBeanServerImpl.java:644\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.util.MBeanProxyExt.invoke(\cf3\ul
                                  MBeanProxyExt.java:176\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at $Proxy4.start(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.SARDeployer.start(\cf3\ul
                                  SARDeployer.java:285\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.MainDeployer.start(\cf3\ul
                                  MainDeployer.java:989\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.MainDeployer.deploy(\cf3\ul
                                  MainDeployer.java:790\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.MainDeployer.deploy(\cf3\ul
                                  MainDeployer.java:753\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.deployment.MainDeployer.deploy(\cf3\ul
                                  MainDeployer.java:737\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.NativeMethodAccessorImpl.invoke0(\cf3\ul Native Method\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at java.lang.reflect.Method.invoke(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ReflectedDispatcher.invoke(\cf3\ul ReflectedDispatcher.java:141\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.dispatch(\cf3\ul
                                  Invocation.java:80\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.AbstractInterceptor.invoke(\cf3\ul AbstractInterceptor.java:118\cf1\ulnone
                                  )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:74\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(\cf3\ul
                                  ModelMBeanOperationInterceptor.java:127\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.server.Invocation.invoke(\cf3\ul
                                  Invocation.java:74\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.AbstractMBeanInvoker.invoke(\cf3\ul AbstractMBeanInvoker.java:245\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.mx.server.MBeanServerImpl.invoke(\cf3\ul MBeanServerImpl.java:644\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.mx.util.MBeanProxyExt.invoke(\cf3\ul
                                  MBeanProxyExt.java:176\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at $Proxy5.deploy(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2\tab at
                                  org.jboss.system.server.ServerImpl.doStart(\cf3\ul ServerImpl.java:453\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.system.server.ServerImpl.start(\cf3\ul
                                  ServerImpl.java:330\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.Main.boot(\cf3\ul
                                  Main.java:187\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at org.jboss.Main$1.run(\cf3\ul
                                  Main.java:438\cf1\ulnone )\cf0\highlight0\par
                                  \cf1\highlight2\tab at java.lang.Thread.run(Unknown
                                  Source)\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,165 DEBUG [JbpmService] Starting
                                  jboss.jbpm:name=DefaultJbpm,service=JbpmService\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,165 DEBUG [JbpmService] starting jbpm
                                  service...\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,195 INFO [JbpmConfiguration] using jbpm
                                  configuration resource 'jbpm.cfg.xml'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,205 DEBUG [JbpmConfiguration] loading defaults
                                  in jbpm configuration\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,295 DEBUG [ObjectFactoryImpl] adding object
                                  info 'default.jbpm.context'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,295 DEBUG [ObjectFactoryImpl] adding object
                                  info 'resource.hibernate.cfg.xml'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'resource.business.calendar'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'resource.default.modules'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'resource.converter'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'resource.action.types'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'resource.node.types'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'resource.parsers'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'resource.varmapping'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'jbpm.msg.wait.timout'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'jbpm.byte.block.size'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,305 DEBUG [ObjectFactoryImpl] adding object
                                  info 'mail.smtp.host'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,315 DEBUG [ObjectFactoryImpl] adding object
                                  info 'jbpm.task.instance.factory'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,315 DEBUG [ObjectFactoryImpl] adding object
                                  info 'jbpm.variable.resolver'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,315 DEBUG [ObjectFactoryImpl] adding object
                                  info 'jbpm.mail.address.resolver'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,315 DEBUG [JbpmConfiguration] loading specific
                                  configuration...\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,325 DEBUG [JbpmService] binding
                                  'org.jbpm.JbpmConfiguration@11dfada' to
                                  'java:/jbpm/JbpmConfiguration'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,325 DEBUG [JbpmService] Started
                                  jboss.jbpm:name=DefaultJbpm,service=JbpmService\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,696 INFO [JbpmQueue] Bound to JNDI name:
                                  queue/JbpmQueue\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,846 INFO [UILServerILService] JBossMQ UIL
                                  service available at : /0.0.0.0:8093\cf0\highlight0\par
                                  \cf1\highlight2 08:50:23,956 INFO [DLQ] Bound to JNDI name:
                                  queue/DLQ\cf0\highlight0\par
                                  \cf1\highlight2 08:50:26,420 INFO [TomcatDeployer] deploy,
                                  ctxPath=/jbpm, warUrl=.../tmp/deploy/tmp30865jbpm-exp.war/\cf0\highlight0\par
                                  \cf1\highlight2 08:50:27,151 INFO [FacesConfigurator] Reading standard
                                  config
                                  org/apache/myfaces/resource/standard-faces-config.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:27,291 INFO [FacesConfigurator] Reading config
                                  jar:file:/C:/Documents%20and%20Settings/Sertac/Desktop/Proje4/jbpm-starters-kit-3.1.1/jbpm-server/server/jbpm/tmp/deploy/tmp3

                                  0865jbpm-exp.war/WEB-INF/lib/tomahawk.jar!/META-INF/faces-config.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:27,381 INFO [FacesConfigurator] Reading config
                                  /WEB-INF/faces-config.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:27,691 DEBUG [ApplicationFactory] New
                                  ApplicationFactory instance created\cf0\highlight0\par
                                  \cf1\highlight2 08:50:27,782 ERROR [LocaleUtils] Locale name null or
                                  empty, ignoring\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,063 INFO [StartupServletContextListener]
                                  ServletContext 'C:\\Documents and
                                  Settings\\Sertac\\Desktop\\Proje4\\jbpm-starters-kit-3.1.1\\jbpm-server\\server\\jbpm\\.\\tmp\\deploy\\tmp30865jbpm-exp.war\\

                                  '
                                  initialized.\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,104 DEBUG [JbpmThreadsServlet] using default
                                  jbpm cfg resource\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,104 DEBUG [JbpmThreadsServlet] using default
                                  jbpm context\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,204 DEBUG [JbpmContextInfo] creating jbpm
                                  context with service factories '[message, scheduler, logging, persistence,
                                  authentication]'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,204 DEBUG [JbpmContext] creating
                                  JbpmContext\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,224 DEBUG [DbPersistenceServiceFactory]
                                  creating persistence service\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,264 DEBUG [JbpmContextInfo] creating jbpm
                                  context with service factories '[message, scheduler, logging, persistence,
                                  authentication]'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,264 DEBUG [JbpmContext] creating
                                  JbpmContext\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,264 DEBUG [DbPersistenceServiceFactory]
                                  creating persistence service\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,264 DEBUG [DbPersistenceServiceFactory]
                                  building hibernate session factory\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,414 INFO [Environment] Hibernate
                                  3.1\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,624 INFO [Environment] hibernate.properties
                                  not found\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,634 INFO [TomcatDeployer] deploy,
                                  ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,644 INFO [Environment] using CGLIB reflection
                                  optimizer\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,644 INFO [Environment] using JDK 1.4
                                  java.sql.Timestamp handling\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,895 DEBUG [HibernateHelper] creating hibernate
                                  configuration resource 'hibernate.cfg.xml'\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,895 INFO [Configuration] configuring from
                                  resource: hibernate.cfg.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,895 INFO [Configuration] Configuration
                                  resource: hibernate.cfg.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:29,955 INFO [Configuration] Reading mappings
                                  from resource: org/jbpm/graph/action/Script.hbm.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:30,726 INFO [Http11Protocol] Starting Coyote
                                  HTTP/1.1 on http-0.0.0.0-8080\cf0\highlight0\par
                                  \cf1\highlight2 08:50:31,928 INFO [Configuration] Reading mappings
                                  from resource: org/jbpm/identity/User.hbm.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,008 INFO [ChannelSocket] JK: ajp13 listening
                                  on /0.0.0.0:8009\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,088 INFO [HbmBinder] Mapping class:
                                  org.jbpm.identity.User -> JBPM_ID_USER\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,128 INFO [JkMain] Jk running ID=0 time=0/311
                                  config=null\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,158 INFO [Server] JBoss (MX MicroKernel)
                                  [4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1 date=200510231054)] Started in
                                  47s:138ms\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,268 INFO [HbmBinder] Mapping collection:
                                  org.jbpm.identity.User.permissions ->
                                  JBPM_ID_PERMISSIONS\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,278 INFO [Configuration] Reading mappings
                                  from resource: org/jbpm/identity/Group.hbm.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,318 INFO [HbmBinder] Mapping class:
                                  org.jbpm.identity.Group -> JBPM_ID_GROUP\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,548 INFO [HbmBinder] Mapping collection:
                                  org.jbpm.identity.Group.permissions ->
                                  JBPM_ID_PERMISSIONS\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,548 INFO [Configuration] Reading mappings
                                  from resource: org/jbpm/identity/Membership.hbm.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,589 INFO [HbmBinder] Mapping class:
                                  org.jbpm.identity.Membership -> JBPM_ID_MEMBERSHIP\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,599 INFO [HbmBinder] Mapping collection:
                                  org.jbpm.identity.Membership.permissions ->
                                  JBPM_ID_PERMISSIONS\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,599 INFO [Configuration] Reading mappings
                                  from resource: org/jbpm/db/hibernate.queries.hbm.xml\cf0\highlight0\par
                                  \cf1\highlight2 08:50:32,639 INFO [Configuration] Reading mappings
                                  from resource:
                                  org/jbpm/graph/def/ProcessDefinition.hbm.xml\cf0\highlight0\par

                                  • 14. Re: MYSQL database connection within JBoss application(using
                                    gkestor

                                    \cf1\highlight2 08:50:32,709 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.def.ProcessDefinition ->
                                    JBPM_PROCESSDEFINITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:32,809 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/def/Node.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:32,859 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.def.Node -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:32,899 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/def/Transition.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:32,959 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.def.Transition -> JBPM_TRANSITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:32,969 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/def/Event.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,009 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.def.Event -> JBPM_EVENT\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,019 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/def/Action.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,049 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.def.Action -> JBPM_ACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,069 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/def/SuperState.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,179 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.def.SuperState -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,179 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/graph/def/ExceptionHandler.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,229 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONHANDLER\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,229 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/instantiation/Delegation.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,260 INFO [HbmBinder] Mapping class:
                                    org.jbpm.instantiation.Delegation -> JBPM_DELEGATION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,270 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/node/StartState.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,300 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.node.StartState -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,300 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/node/EndState.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,340 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.node.EndState -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,340 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/node/ProcessState.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,350 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.node.ProcessState -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,360 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/node/Decision.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,410 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.node.Decision -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,430 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.node.Decision.decisionConditions ->
                                    JBPM_DECISIONCONDITIONS\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,430 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/node/Fork.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,470 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.node.Fork -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,470 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/node/Join.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,490 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.node.Join -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,490 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/node/State.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,520 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.node.State -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,520 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/node/TaskNode.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,540 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.node.TaskNode -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,580 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/def/ContextDefinition.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,600 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/def/VariableAccess.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,630 INFO [HbmBinder] Mapping class:
                                    org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEACCESS\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,660 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,700 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/taskmgmt/def/Swimlane.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,720 INFO [HbmBinder] Mapping class:
                                    org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,740 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/taskmgmt/def/Task.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,780 INFO [HbmBinder] Mapping class:
                                    org.jbpm.taskmgmt.def.Task -> JBPM_TASK\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,810 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/def/TaskController.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,840 INFO [HbmBinder] Mapping class:
                                    org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTROLLER\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,850 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/module/def/ModuleDefinition.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,900 INFO [HbmBinder] Mapping class:
                                    org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEFINITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,900 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/bytes/ByteArray.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,910 INFO [HbmBinder] Mapping class:
                                    org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,920 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEBLOCK\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,920 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/file/def/FileDefinition.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,950 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFINITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,950 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/scheduler/def/CreateTimerAction.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:33,981 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.scheduler.def.CreateTimerAction -> JBPM_ACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,001 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/scheduler/def/CancelTimerAction.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,041 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.scheduler.def.CancelTimerAction -> JBPM_ACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,041 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/exe/Comment.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,111 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.exe.Comment -> JBPM_COMMENT\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,141 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/graph/exe/ProcessInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,181 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,221 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/exe/Token.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,271 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.exe.Token -> JBPM_TOKEN\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,311 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/exe/RuntimeAction.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,341 INFO [HbmBinder] Mapping class:
                                    org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,351 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/module/exe/ModuleInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,391 INFO [HbmBinder] Mapping class:
                                    org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,391 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/ContextInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,421 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.ContextInstance ->
                                    JBPM_MODULEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,421 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/TokenVariableMap.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,451 INFO [HbmBinder] Mapping class:
                                    org.jbpm.context.exe.TokenVariableMap ->
                                    JBPM_TOKENVARIABLEMAP\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,481 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/VariableInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,521 INFO [HbmBinder] Mapping class:
                                    org.jbpm.context.exe.VariableInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,541 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,571 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.variableinstance.ByteArrayInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,581 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,621 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.variableinstance.DateInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,621 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,662 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.variableinstance.DoubleInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,662 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,702 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.variableinstance.HibernateLongInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,702 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,722 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.variableinstance.HibernateStringInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,722 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,772 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.variableinstance.LongInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,772 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,782 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.variableinstance.NullInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,792 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,802 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.exe.variableinstance.StringInstance ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,802 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/msg/Message.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,832 INFO [HbmBinder] Mapping class:
                                    org.jbpm.msg.Message -> JBPM_MESSAGE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,842 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/msg/db/TextMessage.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,852 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.msg.db.TextMessage -> JBPM_MESSAGE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,852 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/command/ExecuteActionCommand.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,892 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.command.ExecuteActionCommand -> JBPM_MESSAGE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,892 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/command/ExecuteNodeCommand.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,922 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.command.ExecuteNodeCommand -> JBPM_MESSAGE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,922 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/command/SignalCommand.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,962 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.command.SignalCommand -> JBPM_MESSAGE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:34,972 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/command/TaskInstanceEndCommand.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,002 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.command.TaskInstanceEndCommand -> JBPM_MESSAGE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,002 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,052 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.exe.TaskMgmtInstance ->
                                    JBPM_MODULEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,072 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,122 INFO [HbmBinder] Mapping class:
                                    org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,182 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.exe.TaskInstance.pooledActors ->
                                    JBPM_TASKACTORPOOL\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,182 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/exe/PooledActor.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,212 INFO [HbmBinder] Mapping class:
                                    org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,222 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.exe.PooledActor.taskInstances ->
                                    JBPM_TASKACTORPOOL\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,222 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,262 INFO [HbmBinder] Mapping class:
                                    org.jbpm.taskmgmt.exe.SwimlaneInstance ->
                                    JBPM_SWIMLANEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,272 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/scheduler/exe/Timer.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,332 INFO [HbmBinder] Mapping class:
                                    org.jbpm.scheduler.exe.Timer -> JBPM_TIMER\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,353 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/logging/log/ProcessLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,383 INFO [HbmBinder] Mapping class:
                                    org.jbpm.logging.log.ProcessLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,383 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/logging/log/MessageLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,403 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.logging.log.MessageLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,403 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/logging/log/CompositeLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,413 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.logging.log.CompositeLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,423 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/log/ActionLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,433 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.log.ActionLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,433 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/log/NodeLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,443 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.log.NodeLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,453 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,483 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,483 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/graph/log/ProcessInstanceEndLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,493 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.log.ProcessInstanceEndLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,493 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/log/SignalLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,513 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.log.SignalLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,513 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/graph/log/TokenCreateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,543 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.log.TokenCreateLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,543 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/log/TokenEndLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,573 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.log.TokenEndLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,583 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/graph/log/TransitionLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,603 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.log.TransitionLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,603 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/context/log/VariableLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,613 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.VariableLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,623 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/VariableCreateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,683 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.VariableCreateLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,683 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/VariableDeleteLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,703 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.VariableDeleteLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,703 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/VariableUpdateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,703 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,703 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/variableinstance/ByteArrayUpdateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,713 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.variableinstance.ByteArrayUpdateLog ->
                                    JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,733 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/variableinstance/DateUpdateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,763 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.variableinstance.DateUpdateLog ->
                                    JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,763 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/variableinstance/DoubleUpdateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,813 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.variableinstance.DoubleUpdateLog ->
                                    JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,813 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/variableinstance/HibernateLongUpdateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,863 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.variableinstance.HibernateLongUpdateLog ->
                                    JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,863 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/variableinstance/HibernateStringUpdateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,883 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.variableinstance.HibernateStringUpdateLog ->
                                    JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,883 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/variableinstance/LongUpdateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,893 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.variableinstance.LongUpdateLog ->
                                    JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,893 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,903 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.log.variableinstance.StringUpdateLog ->
                                    JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,903 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/taskmgmt/log/TaskLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,913 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,923 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,953 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:35,973 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,023 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,033 INFO [Configuration] Reading mappings
                                    from resource: org/jbpm/taskmgmt/log/TaskEndLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,044 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.log.TaskEndLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,044 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/log/SwimlaneLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,044 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.log.SwimlaneLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,054 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/log/SwimlaneCreateLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,054 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.log.SwimlaneCreateLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,064 INFO [Configuration] Reading mappings
                                    from resource:
                                    org/jbpm/taskmgmt/log/SwimlaneAssignLog.hbm.xml\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,104 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.log.SwimlaneAssignLog -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,104 INFO [Configuration] Configured
                                    SessionFactory: null\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,114 INFO [Configuration] processing extends
                                    queue\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,114 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.context.def.ContextDefinition ->
                                    JBPM_MODULEDEFINITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,154 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.taskmgmt.def.TaskMgmtDefinition ->
                                    JBPM_MODULEDEFINITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,154 INFO [HbmBinder] Mapping subclass:
                                    org.jbpm.graph.action.Script -> JBPM_ACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,164 INFO [Configuration] processing
                                    collection mappings\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,164 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.identity.User.memberships -> JBPM_ID_MEMBERSHIP\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.identity.Group.children -> JBPM_ID_GROUP\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.identity.Group.memberships ->
                                    JBPM_ID_MEMBERSHIP\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.ProcessDefinition.events ->
                                    JBPM_EVENT\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.ProcessDefinition.exceptionHandlers ->
                                    JBPM_EXCEPTIONHANDLER\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.ProcessDefinition.nodes -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.ProcessDefinition.actions ->
                                    JBPM_ACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.ProcessDefinition.definitions ->
                                    JBPM_MODULEDEFINITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.Node.events -> JBPM_EVENT\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.Node.exceptionHandlers ->
                                    JBPM_EXCEPTIONHANDLER\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.Node.leavingTransitions ->
                                    JBPM_TRANSITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.Node.arrivingTransitions ->
                                    JBPM_TRANSITION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.Transition.events -> JBPM_EVENT\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.Transition.exceptionHandlers ->
                                    JBPM_EXCEPTIONHANDLER\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.Event.actions -> JBPM_ACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,174 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,184 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.def.ExceptionHandler.actions ->
                                    JBPM_ACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,184 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.node.ProcessState.variableAccesses ->
                                    JBPM_VARIABLEACCESS\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,194 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,194 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,194 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,194 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.def.Task.exceptionHandlers ->
                                    JBPM_EXCEPTIONHANDLER\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,194 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.def.TaskController.variableAccesses ->
                                    JBPM_VARIABLEACCESS\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,194 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.file.def.FileDefinition.processFiles ->
                                    JBPM_BYTEARRAY\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,194 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.exe.ProcessInstance.runtimeActions ->
                                    JBPM_RUNTIMEACTION\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.exe.ProcessInstance.instances ->
                                    JBPM_MODULEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.exe.Token.children -> JBPM_TOKEN\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.context.exe.ContextInstance.tokenVariableMaps ->
                                    JBPM_TOKENVARIABLEMAP\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.context.exe.TokenVariableMap.variableInstances ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneInstances ->
                                    JBPM_SWIMLANEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstances ->
                                    JBPM_TASKINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.exe.TaskInstance.variableInstances ->
                                    JBPM_VARIABLEINSTANCE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.exe.TaskInstance.comments ->
                                    JBPM_COMMENT\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActors ->
                                    JBPM_POOLEDACTOR\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.logging.log.CompositeLog.children -> JBPM_LOG\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes ->
                                    JBPM_SWIMLANE\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks ->
                                    JBPM_TASK\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,204 INFO [HbmBinder] Mapping collection:
                                    org.jbpm.graph.action.Script.variableAccesses ->
                                    JBPM_VARIABLEACCESS\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,214 INFO [Configuration] processing
                                    association property references\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,214 INFO [Configuration] processing foreign
                                    key constraints\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,434 INFO [NamingHelper] JNDI InitialContext
                                    properties:\{\}\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,444 INFO [DatasourceConnectionProvider] Using
                                    datasource: java:/MySqlDS\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,454 INFO [SettingsFactory] RDBMS: MySQL,
                                    version: 5.0.22-community-nt\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,454 INFO [SettingsFactory] JDBC driver:
                                    MySQL-AB JDBC Driver, version: mysql-connector-java-5.0.2-beta ( $Date:
                                    2005-11-17 16:14:47 +0100 (Thu, 17 Nov 2005) $, $Revision: 4560 $
                                    )\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,514 INFO [Dialect] Using dialect:
                                    org.hibernate.dialect.MySQLInnoDBDialect\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,524 INFO [TransactionFactoryFactory] Using
                                    default transaction strategy (direct JDBC
                                    transactions)\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,534 INFO [TransactionManagerLookupFactory] No
                                    TransactionManagerLookup configured (in JTA environment, use of
                                    read-write or transactional second-level cache is not
                                    recommended)\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,534 INFO [SettingsFactory] Automatic flush
                                    during beforeCompletion(): disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,534 INFO [SettingsFactory] Automatic session
                                    close at end of transaction: disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,534 INFO [SettingsFactory] JDBC batch size:
                                    15\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,534 INFO [SettingsFactory] JDBC batch updates
                                    for versioned data: disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,544 INFO [SettingsFactory] Scrollable result
                                    sets: enabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,544 INFO [SettingsFactory] JDBC3
                                    getGeneratedKeys(): enabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,544 INFO [SettingsFactory] Connection release
                                    mode: auto\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,554 INFO [SettingsFactory] Maximum outer join
                                    fetch depth: 2\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,554 INFO [SettingsFactory] Default batch
                                    fetch size: 1\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,554 INFO [SettingsFactory] Generate SQL with
                                    comments: disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,554 INFO [SettingsFactory] Order SQL updates
                                    by primary key: disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,554 INFO [SettingsFactory] Query translator:
                                    org.hibernate.hql.ast.ASTQueryTranslatorFactory\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,594 INFO [ASTQueryTranslatorFactory] Using
                                    ASTQueryTranslatorFactory\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,594 INFO [SettingsFactory] Query language
                                    substitutions: \{\}\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,594 INFO [SettingsFactory] Second-level
                                    cache: enabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,594 INFO [SettingsFactory] Query cache:
                                    disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,594 INFO [SettingsFactory] Cache provider:
                                    org.hibernate.cache.EhCacheProvider\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,644 INFO [SettingsFactory] Optimize cache for
                                    minimal puts: disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,644 INFO [SettingsFactory] Structured
                                    second-level cache entries: disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,664 INFO [SettingsFactory] Statistics:
                                    disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,664 INFO [SettingsFactory] Deleted entity
                                    synthetic identifier rollback: disabled\cf0\highlight0\par
                                    \cf1\highlight2 08:50:36,664 INFO [SettingsFactory] Default
                                    entity-mode: POJO\cf0\highlight0\par
                                    \cf1\highlight2 08:50:37,015 INFO [SessionFactoryImpl] building
                                    session factory\cf0\highlight0\par
                                    \cf1\highlight2 08:50:37,566 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.graph.def.Node]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:37,816 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.instantiation.Delegation]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:38,467 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.taskmgmt.def.Task]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:39,088 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.graph.def.ProcessDefinition]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:39,579 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.graph.def.ExceptionHandler]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:39,619 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.module.def.ModuleDefinition]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:41,091 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.graph.def.Action]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:41,581 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.graph.def.Event]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:42,132 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.context.def.VariableAccess]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:43,524 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.graph.def.Transition]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:44,606 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.taskmgmt.def.TaskController]; using
                                    defaults.\cf0\highlight0\par
                                    \cf1\highlight2 08:50:44,756 WARN [EhCacheProvider] Could not find
                                    configuration [org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks]; using
                                    defaults.\cf0\highlight0\par

                                    1 2 Previous Next