Menu

Config Files Jboss 3.2.8 SP1 & Oracle 10g

Help
nat
2007-03-05
2013-03-11
  • nat

    nat - 2007-03-05

    Hello Vitaliy:

    I am post the configuration files that I changed in Jboss Server:

    I remove hsqldb-ds.xml and I am using oracle-ds.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!-- ===================================================================== -->
    <!-- -->
    <!-- JBoss Server Configuration -->
    <!-- -->
    <!-- ===================================================================== -->
    <!-- $Id: oracle-ds.xml,v 1.6 2004/09/15 14:37:40 loubyansky Exp $ -->
    <!-- ==================================================================== -->
    <!-- Datasource config for Oracle originally from Steven Coy -->
    <!-- ==================================================================== -->
    <datasources>
        <local-tx-datasource>
            <jndi-name>OracleDS</jndi-name>
            <connection-url>jdbc:oracle:thin:@192.168.137.155:1521:WIMAX</connection-url>
            <!--

    Here are a couple of the possible OCI configurations.
    For more information, see http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/java.920/a96654/toc.htm

    <connection-url>jdbc:oracle:oci:@youroracle-tns-name</connection-url>
    or
    <connection-url>jdbc:oracle:oci:@(description=(address=(host=youroraclehost)(protocol=tcp)(port=1521))(connect_data=(SERVICE_NAME=yourservicename)))</connection-url>

    Clearly, its better to have TNS set up properly.
    -->
            <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
            <user-name>WIMAX_SOA</user-name>
            <password>PASSWORD</password>
            <min-pool-size>5</min-pool-size>
            <max-pool-size>100</max-pool-size>
            <!-- Uses the pingDatabase method to check a connection is still valid before handing it out from the pool -->
            <!--valid-connection-checker-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleValidConnectionChecker</valid-connection-checker-class-name-->
            <!-- Checks the Oracle error codes and messages for fatal errors -->
            <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter</exception-sorter-class-name>
            <!-- sql to call when connection is created
    <new-connection-sql>some arbitrary sql</new-connection-sql>
    -->
            <!-- sql to call on an existing pooled connection when it is obtained from pool - the OracleValidConnectionChecker is prefered
    <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql>
    -->
            <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) -->
            <metadata>
                <type-mapping>Oracle9i</type-mapping>
            </metadata>
        </local-tx-datasource>
    </datasources>

    I removed hsqldb-jdbc2-service and I am using oracle-jdbc3-service:

    <?xml version="1.0" encoding="UTF-8"?>
    <!-- $Id: oracle-jdbc3-service.xml,v 1.4 2004/05/09 00:05:26 ejort Exp $ -->
    <server>
        <!-- ==================================================================== -->
        <!-- Persistence and caching using Oracle                                 -->
        <!-- IMPORTANT: Remove hsqldb-jdbc2-service.xml                           -->
        <!-- ==================================================================== -->
        <!--
         | The destination manager is the core service within JBossMQ
      -->
        <mbean code="org.jboss.mq.server.jmx.DestinationManager" name="jboss.mq:service=DestinationManager">
            <depends optional-attribute-name="MessageCache">jboss.mq:service=MessageCache</depends>
            <depends optional-attribute-name="PersistenceManager">jboss.mq:service=PersistenceManager</depends>
            <depends optional-attribute-name="StateManager">jboss.mq:service=StateManager</depends>
        </mbean>
        <!--
         | The MessageCache decides where to put JBossMQ message that
         | are sitting around waiting to be consumed by a client.
         |
         | The memory marks are in Megabytes.  Once the JVM memory usage hits
         | the high memory mark, the old messages in the cache will start getting
         | stored in the DataDirectory.  As memory usage gets closer to the
         | Max memory mark, the amount of message kept in the memory cache aproaches 0.
       -->
        <mbean code="org.jboss.mq.server.MessageCache" name="jboss.mq:service=MessageCache">
            <attribute name="HighMemoryMark">50</attribute>
            <attribute name="MaxMemoryMark">60</attribute>
            <attribute name="CacheStore">jboss.mq:service=PersistenceManager</attribute>
        </mbean>
        <!--
         | The jdbc2 PersistenceManager is the new improved JDBC implementation.
         | This implementation allows you to control how messages are stored in
         | the database.
         |
         | Use this PM if you want the reliablity a relational database can offer
         | you.  The default configuration is known to work with hsqldb, other
         | databases will requrie teaking of the SqlProperties e.g. changing table
         | colum definitions to database supported types.
         |
         | Take care that the selected blob column type can store
         | all message data. Some databases (e.g. mySQL) offer blob types with
         | different maximum capacity (e.g. mySQL-type BLOB=64K, LONGBLOB=2G).
         |
         | If you encouter problems with the configured BLOB_TYPE try a different
         | setting. Valid settings are OBJECT_BLOB, BINARYSTREAM_BLOB and BYTES_BLOB.
       -->
        <mbean code="org.jboss.mq.pm.jdbc2.PersistenceManager" name="jboss.mq:service=PersistenceManager">
            <depends optional-attribute-name="ConnectionManager">jboss.jca:service=DataSourceBinding,name=OracleDS</depends>
            <attribute name="SqlProperties">
          BLOB_TYPE=BINARYSTREAM_BLOB
          UPDATE_MARKED_MESSAGES = UPDATE JMS_MESSAGE_LOG SET TXID=?, TXOP=? WHERE TXOP=?
          UPDATE_MARKED_REFERENCES = UPDATE JMS_REFERENCE_LOG SET TXID=?, TXOP=? WHERE TXOP=?
          UPDATE_MARKED_MESSAGES_WITH_TX = UPDATE JMS_MESSAGE_LOG SET TXID=?, TXOP=? WHERE TXOP=? AND TXID=?
          UPDATE_MARKED_REFERENCES_WITH_TX = UPDATE JMS_REFERENCE_LOG SET TXID=?, TXOP=? WHERE TXOP=? AND TXID=?
          DELETE_MARKED_MESSAGES_WITH_TX = DELETE FROM JMS_MESSAGE_LOG WHERE TXID IN (SELECT TXID FROM JMS_TRANSACTION_LOG) AND TXOP=?
          DELETE_MARKED_REFERENCES_WITH_TX = DELETE FROM JMS_REFERENCE_LOG WHERE TXID IN (SELECT TXID FROM JMS_TRANSACTION_LOG) AND TXOP=?
          DELETE_TX = DELETE FROM JMS_TRANSACTION_LOG WHERE TXID = ?
          DELETE_MARKED_MESSAGES = DELETE FROM JMS_MESSAGE_LOG WHERE TXID=? AND TXOP=?
          DELETE_MARKED_REFERENCES = DELETE FROM JMS_REFERENCE_LOG WHERE TXID=? AND TXOP=?
          DELETE_TEMPORARY_MESSAGES = DELETE FROM JMS_MESSAGE_LOG WHERE TXOP='T'
          DELETE_TEMPORARY_REFERENCES = DELETE FROM JMS_REFERENCE_LOG WHERE TXOP='T'
          INSERT_TX = INSERT INTO JMS_TRANSACTION_LOG (TXID) values(?)
          SELECT_MAX_TX = SELECT MAX(TXID) FROM JMS_TRANSACTION_LOG
          SELECT_MESSAGES_IN_DEST = SELECT MESSAGEID, MESSAGEBLOB FROM JMS_MESSAGE_LOG WHERE DESTINATION=?
          SELECT_REFERENCES_IN_DEST = SELECT R.MESSAGEID, M.MESSAGEBLOB, R.REDELIVERED, R.REDELIVERS FROM JMS_REFERENCE_LOG R, JMS_MESSAGE_LOG M \                                   WHERE R.MESSAGEID = M.MESSAGEID AND R.DESTINATION=?
          SELECT_MESSAGE = SELECT MESSAGEID, MESSAGEBLOB FROM JMS_MESSAGE_LOG WHERE MESSAGEID=? AND DESTINATION=?
          INSERT_MESSAGE = INSERT INTO JMS_MESSAGE_LOG (MESSAGEID, DESTINATION, MESSAGEBLOB, TXID, TXOP, LATECLONE) VALUES(?,?,?,?,?,?)
          INSERT_REFERENCE = INSERT INTO JMS_REFERENCE_LOG (MESSAGEID, DESTINATION, TXID, TXOP, REDELIVERED, REDELIVERS) VALUES(?,?,?,?,?,?)
          MARK_MESSAGE = UPDATE JMS_MESSAGE_LOG SET TXID=?, TXOP=? WHERE MESSAGEID=? AND DESTINATION=?
          MARK_REFERENCE = UPDATE JMS_REFERENCE_LOG SET TXID=?, TXOP=? WHERE MESSAGEID=? AND DESTINATION=?
          DELETE_MESSAGE = DELETE FROM JMS_MESSAGE_LOG WHERE MESSAGEID=? AND DESTINATION=?
          DELETE_REFERENCE = DELETE FROM JMS_REFERENCE_LOG WHERE MESSAGEID=? AND DESTINATION=?
          UPDATE_MESSAGE = UPDATE JMS_MESSAGE_LOG SET MESSAGEBLOB=? WHERE MESSAGEID=? AND DESTINATION=?
          UPDATE_REFERENCE = UPDATE JMS_REFERENCE_LOG SET REDELIVERED=?, REDELIVERS=? WHERE MESSAGEID=? AND DESTINATION=?
          DELETE_ORPHANED_MESSAGES = DELETE FROM JMS_MESSAGE_LOG WHERE LATECLONE = '1' AND MESSAGEID NOT IN (SELECT MESSAGEID FROM JMS_REFERENCE_LOG)
          DELETE_ALL_TXS = DELETE FROM JMS_TRANSACTION_LOG
          CREATE_REFERENCE_TABLE = CREATE TABLE JMS_REFERENCE_LOG ( MESSAGEID INTEGER NOT NULL, \            DESTINATION VARCHAR(255) NOT NULL, TXID INTEGER, TXOP CHAR(1), REDELIVERED CHAR(1), \            REDELIVERS INTEGER, PRIMARY KEY (MESSAGEID, DESTINATION) )
          CREATE_MESSAGE_TABLE = CREATE TABLE JMS_MESSAGE_LOG ( MESSAGEID INTEGER NOT NULL, DESTINATION VARCHAR(255) NOT NULL, \          TXID INTEGER, TXOP CHAR(1), LATECLONE CHAR(1), MESSAGEBLOB BLOB, PRIMARY KEY (MESSAGEID, DESTINATION) )
          CREATE_TX_TABLE = CREATE TABLE JMS_TRANSACTION_LOG ( TXID INTEGER )
          CREATE_TABLES_ON_STARTUP = TRUE
        </attribute>
        </mbean>
    </server>

    I removed hsqldb-jdbc-state-service and I am using oracledb-jdbc-state-service:

    <?xml version="1.0" encoding="UTF-8"?>
    <!-- $Id: hsqldb-jdbc-state-service.xml,v 1.1.2.2 2004/03/16 15:13:21 ejort Exp $ -->
    <server>
        <!-- ==================================================================== -->
        <!-- JBossMQ State Management using HSQLDB                                -->
        <!-- See docs/examples/jms for other configurations                       -->
        <!-- ==================================================================== -->
        <!-- A Statemanager that stores state in the database -->
        <mbean code="org.jboss.mq.sm.jdbc.JDBCStateManager" name="jboss.mq:service=StateManager">
            <depends optional-attribute-name="ConnectionManager">jboss.jca:service=LocalTxCM,name=OracleDS</depends>
            <attribute name="SqlProperties">
          CREATE_TABLES_ON_STARTUP = TRUE
          CREATE_USER_TABLE = CREATE TABLE JMS_USERS (USERID VARCHAR(32) NOT NULL, PASSWD VARCHAR(32) NOT NULL, \                                                  CLIENTID VARCHAR(128), PRIMARY KEY(USERID))
          CREATE_ROLE_TABLE = CREATE TABLE JMS_ROLES (ROLEID VARCHAR(32) NOT NULL, USERID VARCHAR(32) NOT NULL, \                                                  PRIMARY KEY(USERID, ROLEID))
          CREATE_SUBSCRIPTION_TABLE = CREATE TABLE JMS_SUBSCRIPTIONS (CLIENTID VARCHAR(128) NOT NULL, \                                                  SUBNAME VARCHAR(128) NOT NULL, TOPIC VARCHAR(255) NOT NULL, \                                                  SELECTOR VARCHAR(255), PRIMARY KEY(CLIENTID, SUBNAME))
          GET_SUBSCRIPTION = SELECT TOPIC, SELECTOR FROM JMS_SUBSCRIPTIONS WHERE CLIENTID=? AND SUBNAME=?
          LOCK_SUBSCRIPTION = SELECT TOPIC, SELECTOR FROM JMS_SUBSCRIPTIONS WHERE CLIENTID=? AND SUBNAME=?
          GET_SUBSCRIPTIONS_FOR_TOPIC = SELECT CLIENTID, SUBNAME, SELECTOR FROM JMS_SUBSCRIPTIONS WHERE TOPIC=?
          INSERT_SUBSCRIPTION = INSERT INTO JMS_SUBSCRIPTIONS (CLIENTID, SUBNAME, TOPIC, SELECTOR) VALUES(?,?,?,?)
          UPDATE_SUBSCRIPTION = UPDATE JMS_SUBSCRIPTIONS SET TOPIC=?, SELECTOR=? WHERE CLIENTID=? AND SUBNAME=?
          REMOVE_SUBSCRIPTION = DELETE FROM JMS_SUBSCRIPTIONS WHERE CLIENTID=? AND SUBNAME=?
          GET_USER_BY_CLIENTID = SELECT USERID, PASSWD, CLIENTID FROM JMS_USERS WHERE CLIENTID=?
          GET_USER = SELECT PASSWD, CLIENTID FROM JMS_USERS WHERE USERID=?
          POPULATE.TABLES.01 = INSERT INTO JMS_USERS (USERID, PASSWD) VALUES ('guest', 'guest')
          POPULATE.TABLES.02 = INSERT INTO JMS_USERS (USERID, PASSWD) VALUES ('j2ee', 'j2ee')
          POPULATE.TABLES.03 = INSERT INTO JMS_USERS (USERID, PASSWD, CLIENTID) VALUES ('john', 'needle', 'DurableSubscriberExample')
          POPULATE.TABLES.04 = INSERT INTO JMS_USERS (USERID, PASSWD) VALUES ('nobody', 'nobody')
          POPULATE.TABLES.05 = INSERT INTO JMS_USERS (USERID, PASSWD) VALUES ('dynsub', 'dynsub')
          POPULATE.TABLES.06 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('guest','guest')
          POPULATE.TABLES.07 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('j2ee','guest')
          POPULATE.TABLES.08 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('john','guest')
          POPULATE.TABLES.09 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('subscriber','john')
          POPULATE.TABLES.10 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('publisher','john')
          POPULATE.TABLES.11 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('publisher','dynsub')
          POPULATE.TABLES.12 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('durpublisher','john')
          POPULATE.TABLES.13 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('durpublisher','dynsub')
          POPULATE.TABLES.14 = INSERT INTO JMS_ROLES (ROLEID, USERID) VALUES ('noacc','nobody')
        </attribute>
        </mbean>
    </server>

    Also I add this line in login-config file:

    <!-- Oracle modificado 22/02/2007 -->
    <!-- Security domain for JBossMQ -->
    <application-policy name="OracleDbRealm">
        <authentication>
        <login-module code="org.jboss.resource.security.ConfiguredIdentityLoginModule" flag="required">
        <module-option name="principal">sa</module-option>
        <module-option name="userName">WIMAX_SOA</module-option>
        <module-option name="password"/>
        <module-option name="managedConnectionFactoryName"> jboss.jca:service=LocalTxCM,name=OracleDS
            </module-option>
                </login-module>
            </authentication>
        </application-policy>
        <!-- End Oracle -->

    In file standardjaws I change the datasource:

    <datasource>java:/OracleDS</datasource>
        <type-mapping>Oracle 9i</type-mapping>

    In file standardjbosscmp-jdbc I change the datasource:

            <datasource>java:/OracleDS</datasource>
            <datasource-mapping>Oracle 9i</datasource-mapping>

    And I am getting the following error:

    --- MBeans waiting for other MBeans ---
    ObjectName: jboss.mq:service=InvocationLayer,type=HTTP
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=Invoker
        jboss.web:service=WebServer

    ObjectName: jboss.mq.destination:service=Topic,name=testTopic
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager
        jboss.mq:service=SecurityManager

    ObjectName: jboss.mq.destination:service=Topic,name=securedTopic
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager
        jboss.mq:service=SecurityManager

    ObjectName: jboss.mq.destination:service=Topic,name=testDurableTopic
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager
        jboss.mq:service=SecurityManager

    ObjectName: jboss.mq.destination:service=Queue,name=testQueue
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager
        jboss.mq:service=SecurityManager

    ObjectName: jboss.mq.destination:service=Queue,name=A
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager

    ObjectName: jboss.mq.destination:service=Queue,name=B
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager

    ObjectName: jboss.mq.destination:service=Queue,name=C
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager

    ObjectName: jboss.mq.destination:service=Queue,name=D
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager

    ObjectName: jboss.mq.destination:service=Queue,name=ex
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager

    ObjectName: jboss.mq:service=Invoker
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=TracingInterceptor
        jboss:service=Naming
      Depends On Me:
        jboss.mq:service=InvocationLayer,type=HTTP
        jboss.mq:service=InvocationLayer,type=JVM
        jboss.mq:service=InvocationLayer,type=UIL2

    ObjectName: jboss.mq:service=TracingInterceptor
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=SecurityManager
      Depends On Me:
        jboss.mq:service=Invoker

    ObjectName: jboss.mq:service=SecurityManager
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager
      Depends On Me:
        jboss.mq.destination:service=Topic,name=testTopic
        jboss.mq.destination:service=Topic,name=securedTopic
        jboss.mq.destination:service=Topic,name=testDurableTopic
        jboss.mq.destination:service=Queue,name=testQueue
        jboss.mq:service=TracingInterceptor
        jboss.mq.destination:service=Queue,name=DLQ

    ObjectName: jboss.mq.destination:service=Queue,name=DLQ
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=DestinationManager
        jboss.mq:service=SecurityManager

    ObjectName: jboss.mq:service=InvocationLayer,type=JVM
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=Invoker

    ObjectName: jboss.mq:service=DestinationManager
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=MessageCache
        jboss.mq:service=PersistenceManager
        jboss.mq:service=StateManager
      Depends On Me:
        jboss.mq.destination:service=Topic,name=testTopic
        jboss.mq.destination:service=Topic,name=securedTopic
        jboss.mq.destination:service=Topic,name=testDurableTopic
        jboss.mq.destination:service=Queue,name=testQueue
        jboss.mq.destination:service=Queue,name=A
        jboss.mq.destination:service=Queue,name=B
        jboss.mq.destination:service=Queue,name=C
        jboss.mq.destination:service=Queue,name=D
        jboss.mq.destination:service=Queue,name=ex
        jboss.mq:service=SecurityManager
        jboss.mq.destination:service=Queue,name=DLQ

    ObjectName: jboss.mq:service=PersistenceManager
      State: CONFIGURED
      I Depend On:
        jboss.jca:service=DataSourceBinding,name=OracleDS
      Depends On Me:
        jboss.mq:service=DestinationManager

    ObjectName: jboss.mq:service=InvocationLayer,type=UIL2
      State: CONFIGURED
      I Depend On:
        jboss.mq:service=Invoker

    --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
    ObjectName: jboss.jca:service=DataSourceBinding,name=OracleDS
      State: NOTYETINSTALLED
      Depends On Me:
        jboss.mq:service=PersistenceManager

    I need a hand with this issue. I will appreciate any help.

    Thanks again for you help,
    Regards

     
    • nat

      nat - 2007-03-05

      Hello Vitaliy:

      I change the files that you told me and I am getting the following error:

      2007-03-05 17:52:48,859 INFO  [org.apache.catalina.startup.Embedded] Catalina naming disabled
      2007-03-05 17:52:49,343 INFO  [org.apache.coyote.http11.Http11Protocol] Inicializando Coyote HTTP/1.1 en puerto http-0.0.0.0-8080
      2007-03-05 17:52:49,343 INFO  [org.apache.catalina.startup.Catalina] Initialization processed in 422 ms
      2007-03-05 17:52:49,343 INFO  [org.apache.catalina.core.StandardEngine] Starting Servlet Engine: Apache Tomcat/5.0.30
      2007-03-05 17:52:49,359 INFO  [org.apache.catalina.core.StandardHost] XML validation disabled
      2007-03-05 17:52:49,390 INFO  [org.apache.catalina.startup.Catalina] Server startup in 47 ms
      2007-03-05 17:52:49,531 DEBUG [tomcat.localhost./invoker.Context] Starting tomcat.localhost./invoker.Context
      2007-03-05 17:52:49,531 DEBUG [tomcat.localhost./invoker.Context] Configuring default Resources
      2007-03-05 17:52:49,687 DEBUG [tomcat.localhost./invoker.Context] Processing standard container startup
      2007-03-05 17:52:49,734 DEBUG [tomcat.localhost./invoker.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:49,796 DEBUG [tomcat.localhost./invoker.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:49,984 DEBUG [tomcat.localhost./invoker.Context] Posting standard context attributes
      2007-03-05 17:52:49,984 DEBUG [tomcat.localhost./invoker.Context] Configuring application event listeners
      2007-03-05 17:52:49,984 DEBUG [tomcat.localhost./invoker.Context] Sending application start events
      2007-03-05 17:52:49,984 DEBUG [tomcat.localhost./invoker.Context] Starting filters
      2007-03-05 17:52:49,984 DEBUG [tomcat.localhost./invoker.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 17:52:49,984 DEBUG [tomcat.localhost./invoker.Context]  Starting filter 'ReadOnlyAccessFilter'
      2007-03-05 17:52:50,078 DEBUG [tomcat.localhost./invoker.Context] Starting completed
      2007-03-05 17:52:50,078 DEBUG [tomcat.localhost./invoker.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/invoker,J2EEApplication=none,J2EEServer=none
      2007-03-05 17:52:50,203 DEBUG [tomcat.localhost.ROOT.Context] Starting tomcat.localhost.ROOT.Context
      2007-03-05 17:52:50,203 DEBUG [tomcat.localhost.ROOT.Context] Configuring default Resources
      2007-03-05 17:52:50,203 DEBUG [tomcat.localhost.ROOT.Context] No realm for this host null
      2007-03-05 17:52:50,203 DEBUG [tomcat.localhost.ROOT.Context] Processing standard container startup
      2007-03-05 17:52:50,218 DEBUG [tomcat.localhost.ROOT.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:50,250 DEBUG [tomcat.localhost.ROOT.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:50,250 DEBUG [tomcat.localhost.ROOT.Context] Posting standard context attributes
      2007-03-05 17:52:50,250 DEBUG [tomcat.localhost.ROOT.Context] Configuring application event listeners
      2007-03-05 17:52:50,250 DEBUG [tomcat.localhost.ROOT.Context] Sending application start events
      2007-03-05 17:52:50,250 DEBUG [tomcat.localhost.ROOT.Context] Starting filters
      2007-03-05 17:52:50,250 DEBUG [tomcat.localhost.ROOT.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 17:52:50,250 DEBUG [tomcat.localhost.ROOT.Context] Starting completed
      2007-03-05 17:52:50,250 DEBUG [tomcat.localhost.ROOT.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none
      2007-03-05 17:52:50,375 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Starting tomcat.localhost./jbossmq-httpil.Context
      2007-03-05 17:52:50,375 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Configuring default Resources
      2007-03-05 17:52:50,375 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Processing standard container startup
      2007-03-05 17:52:50,390 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:50,406 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:50,421 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Posting standard context attributes
      2007-03-05 17:52:50,421 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Configuring application event listeners
      2007-03-05 17:52:50,421 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Sending application start events
      2007-03-05 17:52:50,421 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Starting filters
      2007-03-05 17:52:50,421 DEBUG [tomcat.localhost./jbossmq-httpil.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 17:52:50,421 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Starting completed
      2007-03-05 17:52:50,421 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/jbossmq-httpil,J2EEApplication=none,J2EEServer=none
      2007-03-05 17:52:54,171 DEBUG [tomcat.localhost./web-console.Context] Starting tomcat.localhost./web-console.Context
      2007-03-05 17:52:54,171 DEBUG [tomcat.localhost./web-console.Context] Configuring default Resources
      2007-03-05 17:52:54,171 DEBUG [tomcat.localhost./web-console.Context] Processing standard container startup
      2007-03-05 17:52:54,187 DEBUG [tomcat.localhost./web-console.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:54,203 DEBUG [tomcat.localhost./web-console.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:54,218 DEBUG [tomcat.localhost./web-console.Context] Posting standard context attributes
      2007-03-05 17:52:54,218 DEBUG [tomcat.localhost./web-console.Context] Configuring application event listeners
      2007-03-05 17:52:54,218 DEBUG [tomcat.localhost./web-console.Context] Sending application start events
      2007-03-05 17:52:54,218 DEBUG [tomcat.localhost./web-console.Context] Starting filters
      2007-03-05 17:52:54,218 DEBUG [tomcat.localhost./web-console.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 17:52:54,453 DEBUG [tomcat.localhost./web-console.Context] Starting completed
      2007-03-05 17:52:54,453 DEBUG [tomcat.localhost./web-console.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/web-console,J2EEApplication=none,J2EEServer=none
      2007-03-05 17:52:56,125 DEBUG [tomcat.localhost./wfe.Context] Starting tomcat.localhost./wfe.Context
      2007-03-05 17:52:56,125 DEBUG [tomcat.localhost./wfe.Context] Configuring default Resources
      2007-03-05 17:52:56,125 DEBUG [tomcat.localhost./wfe.Context] Processing standard container startup
      2007-03-05 17:52:56,156 DEBUG [tomcat.localhost./wfe.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 17:52:56,171 DEBUG [tomcat.localhost./wfe.Context] Setting deployment descriptor public ID to 'null'
      2007-03-05 17:52:56,171 DEBUG [tomcat.localhost./wfe.Context] Posting standard context attributes
      2007-03-05 17:52:56,171 DEBUG [tomcat.localhost./wfe.Context] Configuring application event listeners
      2007-03-05 17:52:56,171 DEBUG [tomcat.localhost./wfe.Context]  Configuring event listener class 'ru.runa.wf.web.servlet.InitializerServletContextListener'
      2007-03-05 17:52:56,187 DEBUG [tomcat.localhost./wfe.Context] Sending application start events
      2007-03-05 17:52:56,187 INFO  [ru.runa.wf.web.servlet.InitializerServletContextListener] initialization started
      2007-03-05 17:52:59,421 INFO  [ru.runa.wf.web.servlet.InitializerServletContextListener] database is not initialized. initializing...
      2007-03-05 17:52:59,437 INFO  [STDOUT] alter table BATCH_PRESENTATIONS drop constraint FK48783814DB317F91
      2007-03-05 17:52:59,500 INFO  [STDOUT] alter table JBPM_DEFINITION drop constraint FK2F4CEE9D66309C76
      2007-03-05 17:52:59,546 INFO  [STDOUT] alter table JBPM_DEFINITION drop constraint FK2F4CEE9DC3893553
      2007-03-05 17:52:59,578 INFO  [STDOUT] alter table JBPM_DEFINITION drop constraint FK2F4CEE9DA1927D4F
      2007-03-05 17:52:59,609 INFO  [STDOUT] alter table SORTED_FIELDS drop constraint FK38F1CA7BB4AB93B
      2007-03-05 17:52:59,640 INFO  [STDOUT] alter table EXECUTOR_GROUP_RELATIONS drop constraint FKD66B5C8B658C7007
      2007-03-05 17:52:59,671 INFO  [STDOUT] alter table EXECUTOR_GROUP_RELATIONS drop constraint FKD66B5C8B4CD4DEFB
      2007-03-05 17:52:59,687 INFO  [STDOUT] alter table CRITERIA_CONDITIONS drop constraint FK7D91A798BC3317B4
      2007-03-05 17:52:59,703 INFO  [STDOUT] alter table SORTING_MODES drop constraint FKCE1FAC75B4AB93B
      2007-03-05 17:52:59,718 INFO  [STDOUT] alter table PERMISSION_MAPPINGS drop constraint FKF10C09D5658C7007
      2007-03-05 17:52:59,750 INFO  [STDOUT] alter table PERMISSION_MAPPINGS drop constraint FKF10C09D5709DC009
      2007-03-05 17:52:59,796 INFO  [STDOUT] alter table FILTER_CRITERIAS drop constraint FKC6A7E0CDB4AB93B
      2007-03-05 17:52:59,828 INFO  [STDOUT] alter table JBPM_VARIABLE drop constraint FKD8CB5A4669B5865
      2007-03-05 17:52:59,875 INFO  [STDOUT] alter table JBPM_VARIABLE drop constraint FKD8CB5A46C3893553
      2007-03-05 17:52:59,906 INFO  [STDOUT] alter table PASSED_TRANSITIONS drop constraint FK522DAC4F84581845
      2007-03-05 17:52:59,937 INFO  [STDOUT] alter table PASSED_TRANSITIONS drop constraint FK522DAC4FCF0F2F15
      2007-03-05 17:52:59,953 INFO  [STDOUT] alter table DISPLAY_FIELDS drop constraint FK6DD5B0F6B4AB93B
      2007-03-05 17:52:59,968 INFO  [STDOUT] alter table JBPM_TYPE drop constraint FKB48F940452D4AD28
      2007-03-05 17:52:59,984 INFO  [STDOUT] alter table JBPM_TYPE drop constraint FKB48F9404C3893553
      2007-03-05 17:53:00,015 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CCFA8C2074
      2007-03-05 17:53:00,031 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CCF41BD495
      2007-03-05 17:53:00,046 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CC52D4AD28
      2007-03-05 17:53:00,062 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CCC3893553
      2007-03-05 17:53:00,093 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CCF41DA4FD
      2007-03-05 17:53:00,156 INFO  [STDOUT] alter table JBPM_TRANSITION drop constraint FK4FF269F1C144
      2007-03-05 17:53:00,187 INFO  [STDOUT] alter table JBPM_TRANSITION drop constraint FK4FF269FC3893553
      2007-03-05 17:53:00,203 INFO  [STDOUT] alter table JBPM_TRANSITION drop constraint FK4FF269F5D2DDF5
      2007-03-05 17:53:00,328 INFO  [STDOUT] alter table JBPM_SWIMLANE drop constraint FK1DD2A83EC3893553
      2007-03-05 17:53:00,359 INFO  [STDOUT] alter table JBPM_SWIMLANE drop constraint FK1DD2A83E52D4AD28
      2007-03-05 17:53:00,390 INFO  [STDOUT] alter table JBPM_ACTION drop constraint FKAD5A7480B5AA0E12
      2007-03-05 17:53:00,421 INFO  [STDOUT] alter table JBPM_ACTION drop constraint FKAD5A7480F2A151BF
      2007-03-05 17:53:00,453 INFO  [STDOUT] alter table JBPM_ACTION drop constraint FKAD5A74809126F810
      2007-03-05 17:53:00,484 INFO  [STDOUT] alter table JBPM_ACTION drop constraint FKAD5A74807E4E3BFE
      2007-03-05 17:53:00,531 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE drop constraint FK236E60DA76CFBBE5
      2007-03-05 17:53:00,640 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE drop constraint FK236E60DA3580E2
      2007-03-05 17:53:00,671 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE drop constraint FK236E60DAC3893553
      2007-03-05 17:53:00,734 INFO  [STDOUT] alter table JBPM_JOB drop constraint FK375F5193696B9F9
      2007-03-05 17:53:00,781 INFO  [STDOUT] alter table JBPM_JOB drop constraint FK375F5193842C3824
      2007-03-05 17:53:00,796 INFO  [STDOUT] alter table JBPM_JOB drop constraint FK375F51937E4E3BFE
      2007-03-05 17:53:00,812 INFO  [STDOUT] alter table JBPM_VARIABLEINSTANCE drop constraint FKC74438DB69B5865
      2007-03-05 17:53:00,843 INFO  [STDOUT] alter table JBPM_VARIABLEINSTANCE drop constraint FKC74438DB696B9F9
      2007-03-05 17:53:00,859 INFO  [STDOUT] alter table ACTIVE_BATCH_PRESENTATIONS drop constraint FKBD27795BDB317F91
      2007-03-05 17:53:00,890 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4F68AC491
      2007-03-05 17:53:00,921 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4FC4AB08AA
      2007-03-05 17:53:00,953 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4F842C3824
      2007-03-05 17:53:01,015 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4FCDC0E9C4
      2007-03-05 17:53:01,046 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4F96611053
      2007-03-05 17:53:01,078 INFO  [STDOUT] alter table GROUP_FIELDS drop constraint FK44F5899B4AB93B
      2007-03-05 17:53:01,093 INFO  [STDOUT] alter table PRIVELEGE_MAPPINGS drop constraint FKEBB7C8D7658C7007
      2007-03-05 17:53:01,109 INFO  [STDOUT] alter table PRIVELEGE_MAPPINGS drop constraint FKEBB7C8D7C6C84BD2
      2007-03-05 17:53:01,140 INFO  [STDOUT] drop table BATCH_PRESENTATIONS cascade constraints
      2007-03-05 17:53:01,546 INFO  [STDOUT] drop table JBPM_DEFINITION cascade constraints
      2007-03-05 17:53:01,687 INFO  [STDOUT] drop table SORTED_FIELDS cascade constraints
      2007-03-05 17:53:01,734 INFO  [STDOUT] drop table EXECUTOR_GROUP_RELATIONS cascade constraints
      2007-03-05 17:53:01,828 INFO  [STDOUT] drop table CRITERIA_CONDITIONS cascade constraints
      2007-03-05 17:53:01,906 INFO  [STDOUT] drop table SORTING_MODES cascade constraints
      2007-03-05 17:53:01,953 INFO  [STDOUT] drop table PERMISSION_MAPPINGS cascade constraints
      2007-03-05 17:53:02,000 INFO  [STDOUT] drop table FILTER_CRITERIAS cascade constraints
      2007-03-05 17:53:02,093 INFO  [STDOUT] drop table JBPM_VARIABLE cascade constraints
      2007-03-05 17:53:02,140 INFO  [STDOUT] drop table WFE_CONSTANTS cascade constraints
      2007-03-05 17:53:02,187 INFO  [STDOUT] drop table PASSED_TRANSITIONS cascade constraints
      2007-03-05 17:53:02,250 INFO  [STDOUT] drop table DISPLAY_FIELDS cascade constraints
      2007-03-05 17:53:02,328 INFO  [STDOUT] drop table JBPM_TYPE cascade constraints
      2007-03-05 17:53:02,359 INFO  [STDOUT] drop table JBPM_NODE cascade constraints
      2007-03-05 17:53:02,421 INFO  [STDOUT] drop table JBPM_TRANSITION cascade constraints
      2007-03-05 17:53:02,468 INFO  [STDOUT] drop table PASSWORDS cascade constraints
      2007-03-05 17:53:02,546 INFO  [STDOUT] drop table JBPM_SWIMLANE cascade constraints
      2007-03-05 17:53:02,625 INFO  [STDOUT] drop table JBPM_ACTION cascade constraints
      2007-03-05 17:53:02,671 INFO  [STDOUT] drop table PROFILES cascade constraints
      2007-03-05 17:53:02,765 INFO  [STDOUT] drop table JBPM_FILE cascade constraints
      2007-03-05 17:53:02,828 INFO  [STDOUT] drop table JBPM_PROCESSINSTANCE cascade constraints
      2007-03-05 17:53:02,875 INFO  [STDOUT] drop table SECURED_OBJECT_TYPES cascade constraints
      2007-03-05 17:53:02,921 INFO  [STDOUT] drop table PROPERTY_IDS cascade constraints
      2007-03-05 17:53:02,984 INFO  [STDOUT] drop table JBPM_JOB cascade constraints
      2007-03-05 17:53:03,046 INFO  [STDOUT] drop table JBPM_VARIABLEINSTANCE cascade constraints
      2007-03-05 17:53:03,109 INFO  [STDOUT] drop table ACTIVE_BATCH_PRESENTATIONS cascade constraints
      2007-03-05 17:53:03,187 INFO  [STDOUT] drop table JBPM_TOKEN cascade constraints
      2007-03-05 17:53:03,250 INFO  [STDOUT] drop table GROUP_FIELDS cascade constraints
      2007-03-05 17:53:03,281 INFO  [STDOUT] drop table JBPM_SEQUENCEBLOCK cascade constraints
      2007-03-05 17:53:03,359 INFO  [STDOUT] drop table PRIVELEGE_MAPPINGS cascade constraints
      2007-03-05 17:53:03,437 INFO  [STDOUT] drop table JBPM_DELEGATION cascade constraints
      2007-03-05 17:53:03,484 INFO  [STDOUT] drop table EXECUTORS cascade constraints
      2007-03-05 17:53:03,546 INFO  [STDOUT] drop table SECURED_OBJECTS cascade constraints
      2007-03-05 17:53:03,625 INFO  [STDOUT] drop sequence hibernate_sequence
      2007-03-05 17:53:03,750 INFO  [STDOUT] create table BATCH_PRESENTATIONS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         RANGE_SIZE number(10,0),
         PRESENTATION_NAME varchar2(128),
         PRESENTATION_ID varchar2(128),
         CLASS_PRESENTATION_ID number(10,0),
         PROFILE_ID number(19,0),
         primary key (ID)
      )
      2007-03-05 17:53:04,156 INFO  [STDOUT] create table JBPM_DEFINITION (
         id number(19,0) not null,
         name varchar2(255) not null,
         description varchar2(255),
         definition number(19,0),
         version_ number(10,0) not null,
         startState number(19,0),
         endState number(19,0),
         primary key (id),
         unique (name, version_)
      )
      2007-03-05 17:53:04,718 INFO  [STDOUT] create table SORTED_FIELDS (
         BATCH_PRESENTATION_ID number(19,0) not null,
         FIELD number(10,0),
         ARRAY_INDEX number(10,0) not null,
         primary key (BATCH_PRESENTATION_ID, ARRAY_INDEX)
      )
      2007-03-05 17:53:04,750 INFO  [STDOUT] create table EXECUTOR_GROUP_RELATIONS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         EXECUTOR_ID number(19,0) not null,
         GROUP_ID number(19,0) not null,
         primary key (ID),
         unique (EXECUTOR_ID, GROUP_ID)
      )
      2007-03-05 17:53:05,187 INFO  [STDOUT] create table CRITERIA_CONDITIONS (
         FILTER_CRITERIA_ID number(19,0) not null,
         CRITERIA_CONDITION varchar2(255),
         CONDITION_INDEX number(10,0) not null,
         primary key (FILTER_CRITERIA_ID, CONDITION_INDEX)
      )
      2007-03-05 17:53:05,437 INFO  [STDOUT] create table SORTING_MODES (
         BATCH_PRESENTATION_ID number(19,0) not null,
         SORTING_MODE number(1,0),
         ARRAY_INDEX number(10,0) not null,
         primary key (BATCH_PRESENTATION_ID, ARRAY_INDEX)
      )
      2007-03-05 17:53:05,484 INFO  [STDOUT] create table PERMISSION_MAPPINGS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         SECURED_OBJECT_ID number(19,0) not null,
         EXECUTOR_ID number(19,0) not null,
         MASK number(19,0) not null,
         primary key (ID),
         unique (SECURED_OBJECT_ID, EXECUTOR_ID, MASK)
      )
      2007-03-05 17:53:05,890 INFO  [STDOUT] create table FILTER_CRITERIAS (
         ID number(19,0) not null,
         CRITERIA_TYPE varchar2(255) not null,
         VERSION number(19,0) not null,
         BATCH_PRESENTATION_ID number(19,0),
         FIELD_INDEX number(10,0),
         primary key (ID)
      )
      2007-03-05 17:53:06,203 INFO  [STDOUT] create table JBPM_VARIABLE (
         id number(19,0) not null,
         name varchar2(255) not null,
         definition number(19,0) not null,
         type_ number(19,0),
         primary key (id)
      )
      2007-03-05 17:53:06,937 INFO  [STDOUT] create table WFE_CONSTANTS (
         ID number(19,0) not null,
         NAME varchar2(255) unique,
         VALUE varchar2(255),
         primary key (ID)
      )
      2007-03-05 17:53:07,140 INFO  [STDOUT] create table PASSED_TRANSITIONS (
         PROCESS_INSTANCE_ID number(19,0) not null,
         TRANSITION_ID number(19,0) not null,
         primary key (PROCESS_INSTANCE_ID, TRANSITION_ID)
      )
      2007-03-05 17:53:07,359 INFO  [STDOUT] create table DISPLAY_FIELDS (
         BATCH_PRESENTATION_ID number(19,0) not null,
         FIELD number(10,0),
         ARRAY_INDEX number(10,0) not null,
         primary key (BATCH_PRESENTATION_ID, ARRAY_INDEX)
      )
      2007-03-05 17:53:07,609 INFO  [STDOUT] create table JBPM_TYPE (
         id number(19,0) not null,
         description varchar2(255),
         javaType varchar2(255) not null,
         delegation number(19,0),
         definition number(19,0),
         index_ number(10,0),
         primary key (id)
      )
      2007-03-05 17:53:07,921 INFO  [STDOUT] create table JBPM_NODE (
         id number(19,0) not null,
         class varchar2(255) not null,
         name varchar2(255) not null,
         description varchar2(255),
         definition number(19,0) not null,
         swimlane number(19,0),
         assignmentRequired number(1,0),
         stateAuthentication varchar2(255),
         delegation number(19,0),
         correspondingJoin number(19,0),
         correspondingFork number(19,0),
         primary key (id)
      )
      2007-03-05 17:53:08,250 INFO  [STDOUT] create table JBPM_TRANSITION (
         id number(19,0) not null,
         name varchar2(255),
         description varchar2(255),
         definition number(19,0) not null,
         from_ number(19,0),
         to_ number(19,0),
         primary key (id)
      )
      2007-03-05 17:53:08,312 INFO  [STDOUT] create table PASSWORDS (
         ACTOR_ID number(19,0) not null,
         PASSWD raw(255) not null,
         primary key (ACTOR_ID)
      )
      2007-03-05 17:53:08,625 INFO  [STDOUT] create table JBPM_SWIMLANE (
         id number(19,0) not null,
         name varchar2(255) not null,
         description varchar2(255),
         definition number(19,0) not null,
         delegation number(19,0),
         primary key (id)
      )
      2007-03-05 17:53:08,859 INFO  [STDOUT] create table JBPM_ACTION (
         id number(19,0) not null,
         eventType varchar2(255),
         actionDelegation number(19,0),
         definition_element number(19,0),
         index_ number(10,0),
         node_element number(19,0),
         transition_element number(19,0),
         primary key (id)
      )
      2007-03-05 17:53:09,156 INFO  [STDOUT] create table PROFILES (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         ACTOR_ID number(19,0) not null unique,
         primary key (ID)
      )
      2007-03-05 17:53:09,515 INFO  [STDOUT] create table JBPM_FILE (
         id number(19,0) not null,
         name varchar2(255) not null,
         definitionId number(19,0) not null,
         bytes long raw,
         primary key (id),
         unique (name, definitionId)
      )
      2007-03-05 17:53:09,812 INFO  [STDOUT] create table JBPM_PROCESSINSTANCE (
         id number(19,0) not null,
         definition number(19,0) not null,
         root number(19,0) not null,
         superProcessToken number(19,0),
         start_ date,
         end_ date,
         primary key (id)
      )
      2007-03-05 17:53:10,156 INFO  [STDOUT] create table SECURED_OBJECT_TYPES (
         ID number(19,0) not null,
         PERMISSION_CLASS_NAME varchar2(255) not null,
         TYPE_CODE number(10,0) unique,
         primary key (ID)
      )
      2007-03-05 17:53:10,500 INFO  [STDOUT] create table PROPERTY_IDS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         NEXT_ID number(19,0),
         CLASS_NAME varchar2(128),
         PROPERTY_NAME varchar2(128),
         primary key (ID),
         unique (CLASS_NAME, PROPERTY_NAME)
      )
      2007-03-05 17:53:10,796 INFO  [STDOUT] create table JBPM_JOB (
         id number(19,0) not null,
         actionDelegation number(19,0),
         token number(19,0),
         processInstance number(19,0),
         dueDate date,
         repeat_ number(19,0),
         reference varchar2(255),
         primary key (id)
      )
      2007-03-05 17:53:11,031 INFO  [STDOUT] create table JBPM_VARIABLEINSTANCE (
         id number(19,0) not null,
         name varchar2(255) not null,
         serializedValue long raw,
         defaultType varchar2(255),
         type_ number(19,0),
         token number(19,0) not null,
         primary key (id)
      )
      2007-03-05 17:53:11,281 INFO  [STDOUT] create table ACTIVE_BATCH_PRESENTATIONS (
         PROFILE_ID number(19,0) not null,
         PRESENTATION_NAME varchar2(255),
         PRESENTATION_ID varchar2(255) not null,
         primary key (PROFILE_ID, PRESENTATION_ID)
      )
      2007-03-05 17:53:11,500 INFO  [STDOUT] create table JBPM_TOKEN (
         id number(19,0) not null,
         TOKEN_NAME varchar2(255) not null,
         processInstance number(19,0),
         parent number(19,0),
         state number(19,0),
         actorId varchar2(255),
         start_ date,
         end_ date,
         reactivationJoin number(19,0),
         subProcessInstance number(19,0),
         primary key (id)
      )
      2007-03-05 17:53:11,796 INFO  [STDOUT] create table GROUP_FIELDS (
         BATCH_PRESENTATION_ID number(19,0) not null,
         FIELD number(10,0),
         ARRAY_INDEX number(10,0) not null,
         primary key (BATCH_PRESENTATION_ID, ARRAY_INDEX)
      )
      2007-03-05 17:53:12,062 INFO  [STDOUT] create table JBPM_SEQUENCEBLOCK (
         id number(19,0) not null,
         nextId number(19,0),
         primary key (id)
      )
      2007-03-05 17:53:12,140 INFO  [STDOUT] create table PRIVELEGE_MAPPINGS (
         TYPE_CODE number(19,0) not null,
         EXECUTOR_ID number(19,0) not null,
         primary key (TYPE_CODE, EXECUTOR_ID)
      )
      2007-03-05 17:53:12,468 INFO  [STDOUT] create table JBPM_DELEGATION (
         id number(19,0) not null,
         className varchar2(255),
         configuration long,
         primary key (id)
      )
      2007-03-05 17:53:12,875 INFO  [STDOUT] create table EXECUTORS (
         ID number(19,0) not null,
         IS_GROUP number(1,0) not null,
         VERSION number(19,0) not null,
         NAME varchar2(255) not null unique,
         DESCRIPTION varchar2(255),
         FULL_NAME varchar2(255),
         CODE number(19,0),
         primary key (ID)
      )
      2007-03-05 17:53:13,156 INFO  [STDOUT] create table SECURED_OBJECTS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         EXT_ID number(19,0),
         TYPE_CODE number(10,0),
         primary key (ID),
         unique (EXT_ID, TYPE_CODE)
      )
      2007-03-05 17:53:13,250 INFO  [STDOUT] create index PRESENTATION_NAME_ID_IDX on BATCH_PRESENTATIONS (PRESENTATION_NAME, PRESENTATION_ID)
      2007-03-05 17:53:13,500 INFO  [STDOUT] alter table BATCH_PRESENTATIONS add constraint FK48783814DB317F91 foreign key (PROFILE_ID) references PROFILES
      2007-03-05 17:53:13,546 INFO  [STDOUT] create index JBPM_DEFINITION_NAME_IDX on JBPM_DEFINITION (name)
      2007-03-05 17:53:13,609 INFO  [STDOUT] alter table JBPM_DEFINITION add constraint FK2F4CEE9D66309C76 foreign key (endState) references JBPM_NODE
      2007-03-05 17:53:13,640 INFO  [STDOUT] alter table JBPM_DEFINITION add constraint FK2F4CEE9DC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 17:53:13,656 INFO  [STDOUT] alter table JBPM_DEFINITION add constraint FK2F4CEE9DA1927D4F foreign key (startState) references JBPM_NODE
      2007-03-05 17:53:13,687 INFO  [STDOUT] alter table SORTED_FIELDS add constraint FK38F1CA7BB4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 17:53:13,734 INFO  [STDOUT] create index EXECUTOR_GROUP_RELATIONS_EXECUTOR_ID_IDX on EXECUTOR_GROUP_RELATIONS (EXECUTOR_ID)
      2007-03-05 17:53:13,765 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index EXECUTOR_GROUP_RELATIONS_EXECUTOR_ID_IDX on EXECUTOR_GROUP_RELATIONS (EXECUTOR_ID)
      2007-03-05 17:53:13,781 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 17:53:13,781 INFO  [STDOUT] create index EXECUTOR_GROUP_RELATIONS_GROUP_ID_IDX on EXECUTOR_GROUP_RELATIONS (GROUP_ID)
      2007-03-05 17:53:13,812 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index EXECUTOR_GROUP_RELATIONS_GROUP_ID_IDX on EXECUTOR_GROUP_RELATIONS (GROUP_ID)
      2007-03-05 17:53:13,812 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 17:53:13,812 INFO  [STDOUT] alter table EXECUTOR_GROUP_RELATIONS add constraint FKD66B5C8B658C7007 foreign key (EXECUTOR_ID) references EXECUTORS
      2007-03-05 17:53:13,828 INFO  [STDOUT] alter table EXECUTOR_GROUP_RELATIONS add constraint FKD66B5C8B4CD4DEFB foreign key (GROUP_ID) references EXECUTORS
      2007-03-05 17:53:13,875 INFO  [STDOUT] alter table CRITERIA_CONDITIONS add constraint FK7D91A798BC3317B4 foreign key (FILTER_CRITERIA_ID) references FILTER_CRITERIAS
      2007-03-05 17:53:13,921 INFO  [STDOUT] alter table SORTING_MODES add constraint FKCE1FAC75B4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 17:53:13,953 INFO  [STDOUT] create index PERMISSION_MAPPINGS_EXECUTOR_ID_IDX on PERMISSION_MAPPINGS (EXECUTOR_ID)
      2007-03-05 17:53:13,984 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index PERMISSION_MAPPINGS_EXECUTOR_ID_IDX on PERMISSION_MAPPINGS (EXECUTOR_ID)
      2007-03-05 17:53:13,984 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 17:53:13,984 INFO  [STDOUT] create index PERMISSION_MAPPINGS_SECURED_OBJECT_ID_IDX on PERMISSION_MAPPINGS (SECURED_OBJECT_ID)
      2007-03-05 17:53:14,015 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index PERMISSION_MAPPINGS_SECURED_OBJECT_ID_IDX on PERMISSION_MAPPINGS (SECURED_OBJECT_ID)
      2007-03-05 17:53:14,015 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 17:53:14,015 INFO  [STDOUT] alter table PERMISSION_MAPPINGS add constraint FKF10C09D5658C7007 foreign key (EXECUTOR_ID) references EXECUTORS
      2007-03-05 17:53:14,062 INFO  [STDOUT] alter table PERMISSION_MAPPINGS add constraint FKF10C09D5709DC009 foreign key (SECURED_OBJECT_ID) references SECURED_OBJECTS
      2007-03-05 17:53:14,078 INFO  [STDOUT] alter table FILTER_CRITERIAS add constraint FKC6A7E0CDB4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 17:53:14,109 INFO  [STDOUT] alter table JBPM_VARIABLE add constraint FKD8CB5A4669B5865 foreign key (type_) references JBPM_TYPE
      2007-03-05 17:53:14,125 INFO  [STDOUT] alter table JBPM_VARIABLE add constraint FKD8CB5A46C3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 17:53:14,156 INFO  [STDOUT] alter table PASSED_TRANSITIONS add constraint FK522DAC4F84581845 foreign key (TRANSITION_ID) references JBPM_TRANSITION
      2007-03-05 17:53:14,187 INFO  [STDOUT] alter table PASSED_TRANSITIONS add constraint FK522DAC4FCF0F2F15 foreign key (PROCESS_INSTANCE_ID) references JBPM_PROCESSINSTANCE
      2007-03-05 17:53:14,234 INFO  [STDOUT] alter table DISPLAY_FIELDS add constraint FK6DD5B0F6B4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 17:53:14,265 INFO  [STDOUT] alter table JBPM_TYPE add constraint FKB48F940452D4AD28 foreign key (delegation) references JBPM_DELEGATION
      2007-03-05 17:53:14,296 INFO  [STDOUT] alter table JBPM_TYPE add constraint FKB48F9404C3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 17:53:14,343 INFO  [STDOUT] create index JBPM_NODE_SWIMLANE_ID_IDX on JBPM_NODE (swimlane)
      2007-03-05 17:53:14,578 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CCFA8C2074 foreign key (swimlane) references JBPM_SWIMLANE
      2007-03-05 17:53:14,625 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CCF41BD495 foreign key (correspondingFork) references JBPM_NODE
      2007-03-05 17:53:14,640 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CC52D4AD28 foreign key (delegation) references JBPM_DELEGATION
      2007-03-05 17:53:14,703 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CCC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 17:53:14,734 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CCF41DA4FD foreign key (correspondingJoin) references JBPM_NODE
      2007-03-05 17:53:14,765 INFO  [STDOUT] alter table JBPM_TRANSITION add constraint FK4FF269F1C144 foreign key (to_) references JBPM_NODE
      2007-03-05 17:53:14,796 INFO  [STDOUT] alter table JBPM_TRANSITION add constraint FK4FF269FC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 17:53:14,843 INFO  [STDOUT] alter table JBPM_TRANSITION add constraint FK4FF269F5D2DDF5 foreign key (from_) references JBPM_NODE
      2007-03-05 17:53:14,859 INFO  [STDOUT] alter table JBPM_SWIMLANE add constraint FK1DD2A83EC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 17:53:14,906 INFO  [STDOUT] alter table JBPM_SWIMLANE add constraint FK1DD2A83E52D4AD28 foreign key (delegation) references JBPM_DELEGATION
      2007-03-05 17:53:14,937 INFO  [STDOUT] alter table JBPM_ACTION add constraint FKAD5A7480B5AA0E12 foreign key (transition_element) references JBPM_TRANSITION
      2007-03-05 17:53:14,968 INFO  [STDOUT] alter table JBPM_ACTION add constraint FKAD5A7480F2A151BF foreign key (node_element) references JBPM_NODE
      2007-03-05 17:53:15,015 INFO  [STDOUT] alter table JBPM_ACTION add constraint FKAD5A74809126F810 foreign key (definition_element) references JBPM_DEFINITION
      2007-03-05 17:53:15,046 INFO  [STDOUT] alter table JBPM_ACTION add constraint FKAD5A74807E4E3BFE foreign key (actionDelegation) references JBPM_DELEGATION
      2007-03-05 17:53:15,062 INFO  [STDOUT] create index JBPM_PROCESSINSTANCE_DEFINITION_ID_IDX on JBPM_PROCESSINSTANCE (definition)
      2007-03-05 17:53:15,093 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index JBPM_PROCESSINSTANCE_DEFINITION_ID_IDX on JBPM_PROCESSINSTANCE (definition)
      2007-03-05 17:53:15,093 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 17:53:15,109 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE add constraint FK236E60DA76CFBBE5 foreign key (superProcessToken) references JBPM_TOKEN
      2007-03-05 17:53:15,125 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE add constraint FK236E60DA3580E2 foreign key (root) references JBPM_TOKEN
      2007-03-05 17:53:15,156 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE add constraint FK236E60DAC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 17:53:15,187 INFO  [STDOUT] alter table JBPM_JOB add constraint FK375F5193696B9F9 foreign key (token) references JBPM_TOKEN
      2007-03-05 17:53:15,234 INFO  [STDOUT] alter table JBPM_JOB add constraint FK375F5193842C3824 foreign key (processInstance) references JBPM_PROCESSINSTANCE
      2007-03-05 17:53:15,265 INFO  [STDOUT] alter table JBPM_JOB add constraint FK375F51937E4E3BFE foreign key (actionDelegation) references JBPM_DELEGATION
      2007-03-05 17:53:15,312 INFO  [STDOUT] create index JBPM_VARIABLEINSTANCE_TOKEN_ID_IDX on JBPM_VARIABLEINSTANCE (token)
      2007-03-05 17:53:15,359 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index JBPM_VARIABLEINSTANCE_TOKEN_ID_IDX on JBPM_VARIABLEINSTANCE (token)
      2007-03-05 17:53:15,359 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 17:53:15,359 INFO  [STDOUT] alter table JBPM_VARIABLEINSTANCE add constraint FKC74438DB69B5865 foreign key (type_) references JBPM_TYPE
      2007-03-05 17:53:15,390 INFO  [STDOUT] alter table JBPM_VARIABLEINSTANCE add constraint FKC74438DB696B9F9 foreign key (token) references JBPM_TOKEN
      2007-03-05 17:53:15,421 INFO  [STDOUT] alter table ACTIVE_BATCH_PRESENTATIONS add constraint FKBD27795BDB317F91 foreign key (PROFILE_ID) references PROFILES
      2007-03-05 17:53:15,437 INFO  [STDOUT] create index JBPM_TOKEN_PROCESSINSTANCE_ID_IDX on JBPM_TOKEN (processInstance)
      2007-03-05 17:53:15,468 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index JBPM_TOKEN_PROCESSINSTANCE_ID_IDX on JBPM_TOKEN (processInstance)
      2007-03-05 17:53:15,468 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 17:53:15,468 INFO  [STDOUT] create index JBPM_TOKEN_STATE_ID_IDX on JBPM_TOKEN (state)
      2007-03-05 17:53:15,515 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4F68AC491 foreign key (state) references JBPM_NODE
      2007-03-05 17:53:15,578 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4FC4AB08AA foreign key (parent) references JBPM_TOKEN
      2007-03-05 17:53:15,609 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4F842C3824 foreign key (processInstance) references JBPM_PROCESSINSTANCE
      2007-03-05 17:53:15,640 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4FCDC0E9C4 foreign key (subProcessInstance) references JBPM_PROCESSINSTANCE
      2007-03-05 17:53:15,671 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4F96611053 foreign key (reactivationJoin) references JBPM_NODE
      2007-03-05 17:53:15,718 INFO  [STDOUT] alter table GROUP_FIELDS add constraint FK44F5899B4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 17:53:15,734 INFO  [STDOUT] alter table PRIVELEGE_MAPPINGS add constraint FKEBB7C8D7658C7007 foreign key (EXECUTOR_ID) references EXECUTORS
      2007-03-05 17:53:15,781 INFO  [STDOUT] alter table PRIVELEGE_MAPPINGS add constraint FKEBB7C8D7C6C84BD2 foreign key (TYPE_CODE) references SECURED_OBJECT_TYPES
      2007-03-05 17:53:15,828 INFO  [STDOUT] create index EXECUTORS_CODE_IDX on EXECUTORS (CODE)
      2007-03-05 17:53:15,875 INFO  [STDOUT] create sequence hibernate_sequence
      2007-03-05 17:53:16,031 ERROR [org.jboss.ejb.plugins.LogInterceptor] RuntimeException in method: public abstract void ru.runa.af.service.impl.interfaces.InitializerService.init() throws ru.runa.af.InternalApplicationException,java.rmi.RemoteException
      ru.runa.af.InternalApplicationException: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.logic.AFInitializerLogic.exportDataInternal(AFInitializerLogic.java:108)
          at ru.runa.af.logic.InitializerLogic.init(InitializerLogic.java:57)
          at ru.runa.af.service.impl.ejb.InitializerServiceBean.init(InitializerServiceBean.java:70)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:698)
          at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:198)
          at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:87)
          at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:101)
          at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:348)
          at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:179)
          at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:120)
          at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:206)
          at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)
          at org.jboss.ejb.StatelessSessionContainer.internalInvoke(StatelessSessionContainer.java:345)
          at org.jboss.ejb.Container.invoke(Container.java:723)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:111)
          at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:193)
          at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:179)
          at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
          at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
          at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:115)
          at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
          at $Proxy66.init(Unknown Source)
          at ru.runa.af.delegate.impl.InitializerServiceDelegateRemoteImpl.init(InitializerServiceDelegateRemoteImpl.java:50)
          at ru.runa.wf.web.servlet.InitializerServletContextListener.contextInitialized(InitializerServletContextListener.java:47)
          at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3831)
          at org.apache.catalina.core.StandardContext.start(StandardContext.java:4323)
          at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
          at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
          at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
          at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:163)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.apache.catalina.core.StandardContext.init(StandardContext.java:5456)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
          at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:163)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:288)
          at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:98)
          at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:334)
          at org.jboss.web.WebModule.startModule(WebModule.java:83)
          at org.jboss.web.WebModule.startService(WebModule.java:61)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
          at sun.reflect.GeneratedMethodAccessor33.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
          at $Proxy0.start(Unknown Source)
          at org.jboss.system.ServiceController.start(ServiceController.java:404)
          at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy27.start(Unknown Source)
          at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:371)
          at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
          at sun.reflect.GeneratedMethodAccessor37.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy7.deploy(Unknown Source)
          at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:316)
          at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:490)
          at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:213)
          at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:286)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
          at $Proxy0.start(Unknown Source)
          at org.jboss.system.ServiceController.start(ServiceController.java:404)
          at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy4.start(Unknown Source)
          at org.jboss.deployment.SARDeployer.start(SARDeployer.java:263)
          at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:600)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy5.deploy(Unknown Source)
          at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:462)
          at org.jboss.system.server.ServerImpl.start(ServerImpl.java:353)
          at org.jboss.Main.boot(Main.java:201)
          at org.jboss.Main$1.run(Main.java:459)
          at java.lang.Thread.run(Thread.java:595)
      Caused by: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.dao.impl.SecuredObjectDAOHibernateImpl.get(SecuredObjectDAOHibernateImpl.java:124)
          at ru.runa.af.logic.AFInitializerLogic.grantDefaultExecutorsPermissions(AFInitializerLogic.java:156)
          at ru.runa.wf.logic.WFInitializerLogic.grantDefaultExecutorsPermissions(WFInitializerLogic.java:72)
          at ru.runa.af.logic.AFInitializerLogic.exportDataInternal(AFInitializerLogic.java:95)
          ... 154 more
      2007-03-05 17:53:16,234 ERROR [ru.runa.af.delegate.impl.InitializerServiceDelegateRemoteImpl] java.rmi.ServerException: RuntimeException; nested exception is:
          ru.runa.af.InternalApplicationException: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
      2007-03-05 17:53:16,250 FATAL [ru.runa.wf.web.servlet.InitializerServletContextListener] initialization failed
      ru.runa.af.InternalApplicationException: ru.runa.af.InternalApplicationException: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.delegate.impl.RemoteDelegate.substituteRemoteExceptionWithNullPointerExceptionIfPossible(RemoteDelegate.java:149)
          at ru.runa.af.delegate.impl.InitializerServiceDelegateRemoteImpl.init(InitializerServiceDelegateRemoteImpl.java:54)
          at ru.runa.wf.web.servlet.InitializerServletContextListener.contextInitialized(InitializerServletContextListener.java:47)
          at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3831)
          at org.apache.catalina.core.StandardContext.start(StandardContext.java:4323)
          at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
          at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
          at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
          at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:163)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.apache.catalina.core.StandardContext.init(StandardContext.java:5456)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
          at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:163)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:288)
          at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:98)
          at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:334)
          at org.jboss.web.WebModule.startModule(WebModule.java:83)
          at org.jboss.web.WebModule.startService(WebModule.java:61)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
          at sun.reflect.GeneratedMethodAccessor33.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
          at $Proxy0.start(Unknown Source)
          at org.jboss.system.ServiceController.start(ServiceController.java:404)
          at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy27.start(Unknown Source)
          at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:371)
          at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
          at sun.reflect.GeneratedMethodAccessor37.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy7.deploy(Unknown Source)
          at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:316)
          at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:490)
          at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:213)
          at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:286)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
          at $Proxy0.start(Unknown Source)
          at org.jboss.system.ServiceController.start(ServiceController.java:404)
          at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy4.start(Unknown Source)
          at org.jboss.deployment.SARDeployer.start(SARDeployer.java:263)
          at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:600)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy5.deploy(Unknown Source)
          at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:462)
          at org.jboss.system.server.ServerImpl.start(ServerImpl.java:353)
          at org.jboss.Main.boot(Main.java:201)
          at org.jboss.Main$1.run(Main.java:459)
          at java.lang.Thread.run(Thread.java:595)
      Caused by: ru.runa.af.InternalApplicationException: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.logic.AFInitializerLogic.exportDataInternal(AFInitializerLogic.java:108)
          at ru.runa.af.logic.InitializerLogic.init(InitializerLogic.java:57)
          at ru.runa.af.service.impl.ejb.InitializerServiceBean.init(InitializerServiceBean.java:70)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:698)
          at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:198)
          at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:87)
          at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:101)
          at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:348)
          at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:179)
          at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:120)
          at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:206)
          at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)
          at org.jboss.ejb.StatelessSessionContainer.internalInvoke(StatelessSessionContainer.java:345)
          at org.jboss.ejb.Container.invoke(Container.java:723)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:111)
          at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:193)
          at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:179)
          at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
          at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
          at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:115)
          at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
          at $Proxy66.init(Unknown Source)
          at ru.runa.af.delegate.impl.InitializerServiceDelegateRemoteImpl.init(InitializerServiceDelegateRemoteImpl.java:50)
          ... 118 more
      Caused by: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.dao.impl.SecuredObjectDAOHibernateImpl.get(SecuredObjectDAOHibernateImpl.java:124)
          at ru.runa.af.logic.AFInitializerLogic.grantDefaultExecutorsPermissions(AFInitializerLogic.java:156)
          at ru.runa.wf.logic.WFInitializerLogic.grantDefaultExecutorsPermissions(WFInitializerLogic.java:72)
          at ru.runa.af.logic.AFInitializerLogic.exportDataInternal(AFInitializerLogic.java:95)
          ... 154 more
      2007-03-05 17:53:16,453 DEBUG [tomcat.localhost./wfe.Context] Starting filters
      2007-03-05 17:53:16,453 DEBUG [tomcat.localhost./wfe.Context]  Starting filter 'ntlmfilter'
      2007-03-05 17:53:16,468 DEBUG [tomcat.localhost./wfe.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 17:53:16,687 DEBUG [tomcat.localhost./wfe.Context] Starting completed
      2007-03-05 17:53:16,687 DEBUG [tomcat.localhost./wfe.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/wfe,J2EEApplication=none,J2EEServer=none
      2007-03-05 17:53:16,718 ERROR [org.jboss.web.tomcat.tc5.session.JBossCacheManager] JBossCacheService to Tomcat clustering not found
      2007-03-05 17:53:16,718 ERROR [org.jboss.web.tomcat.tc5.TomcatDeployer] Failed to setup clustering, clustering disabled
      2007-03-05 17:53:16,734 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment listing:

      --- MBeans waiting for other MBeans ---
      ObjectName: jboss.mq:service=InvocationLayer,type=HTTP
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=Invoker
          jboss.web:service=WebServer

      ObjectName: jboss.mq:service=StateManager
        State: CONFIGURED
        I Depend On:
          jboss.jca:service=LocalTxCM,name=DefaultDS
        Depends On Me:
          jboss.mq:service=DestinationManager

      ObjectName: jboss.mq:service=DestinationManager
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=MessageCache
          jboss.mq:service=PersistenceManager
          jboss.mq:service=StateManager
          jboss.mq:service=ThreadPool
          jboss:service=Naming
        Depends On Me:
          jboss.mq.destination:service=Topic,name=testTopic
          jboss.mq.destination:service=Topic,name=securedTopic
          jboss.mq.destination:service=Topic,name=testDurableTopic
          jboss.mq.destination:service=Queue,name=testQueue
          jboss.mq.destination:service=Queue,name=A
          jboss.mq.destination:service=Queue,name=B
          jboss.mq.destination:service=Queue,name=C
          jboss.mq.destination:service=Queue,name=D
          jboss.mq.destination:service=Queue,name=ex
          jboss.mq:service=SecurityManager
          jboss.mq.destination:service=Queue,name=DLQ

      ObjectName: jboss.mq:service=PersistenceManager
        State: CONFIGURED
        I Depend On:
          jboss.jca:service=LocalTxCM,name=DefaultDS
        Depends On Me:
          jboss.mq:service=DestinationManager

      ObjectName: jboss.mq.destination:service=Topic,name=testTopic
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager
          jboss.mq:service=SecurityManager

      ObjectName: jboss.mq.destination:service=Topic,name=securedTopic
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager
          jboss.mq:service=SecurityManager

      ObjectName: jboss.mq.destination:service=Topic,name=testDurableTopic
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager
          jboss.mq:service=SecurityManager

      ObjectName: jboss.mq.destination:service=Queue,name=testQueue
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager
          jboss.mq:service=SecurityManager

      ObjectName: jboss.mq.destination:service=Queue,name=A
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager

      ObjectName: jboss.mq.destination:service=Queue,name=B
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager

      ObjectName: jboss.mq.destination:service=Queue,name=C
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager

      ObjectName: jboss.mq.destination:service=Queue,name=D
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager

      ObjectName: jboss.mq.destination:service=Queue,name=ex
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager

      ObjectName: jboss.mq:service=Invoker
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=TracingInterceptor
          jboss:service=Naming
        Depends On Me:
          jboss.mq:service=InvocationLayer,type=HTTP
          jboss.mq:service=InvocationLayer,type=JVM
          jboss.mq:service=InvocationLayer,type=UIL2

      ObjectName: jboss.mq:service=TracingInterceptor
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=SecurityManager
        Depends On Me:
          jboss.mq:service=Invoker

      ObjectName: jboss.mq:service=SecurityManager
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager
        Depends On Me:
          jboss.mq.destination:service=Topic,name=testTopic
          jboss.mq.destination:service=Topic,name=securedTopic
          jboss.mq.destination:service=Topic,name=testDurableTopic
          jboss.mq.destination:service=Queue,name=testQueue
          jboss.mq:service=TracingInterceptor
          jboss.mq.destination:service=Queue,name=DLQ

      ObjectName: jboss.mq.destination:service=Queue,name=DLQ
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=DestinationManager
          jboss.mq:service=SecurityManager

      ObjectName: jboss.mq:service=InvocationLayer,type=JVM
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=Invoker

      ObjectName: jboss.mq:service=InvocationLayer,type=UIL2
        State: CONFIGURED
        I Depend On:
          jboss.mq:service=Invoker

      --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
      ObjectName: jboss.jca:service=LocalTxCM,name=DefaultDS
        State: NOTYETINSTALLED
        Depends On Me:
          jboss.mq:service=StateManager
          jboss.mq:service=PersistenceManager

      Thanks for your help,
      Regards.

       
    • nat

      nat - 2007-03-05

      Hello Vitaliy:

      I drop the tables, and I get the following error. It seems some tables are missing.

      2007-03-05 18:34:48,500 INFO  [org.apache.catalina.startup.Embedded] Catalina naming disabled
      2007-03-05 18:34:48,968 INFO  [org.apache.coyote.http11.Http11Protocol] Inicializando Coyote HTTP/1.1 en puerto http-0.0.0.0-8080
      2007-03-05 18:34:48,968 INFO  [org.apache.catalina.startup.Catalina] Initialization processed in 422 ms
      2007-03-05 18:34:48,984 INFO  [org.apache.catalina.core.StandardEngine] Starting Servlet Engine: Apache Tomcat/5.0.30
      2007-03-05 18:34:49,000 INFO  [org.apache.catalina.core.StandardHost] XML validation disabled
      2007-03-05 18:34:49,015 INFO  [org.apache.catalina.startup.Catalina] Server startup in 47 ms
      2007-03-05 18:34:49,187 DEBUG [tomcat.localhost./invoker.Context] Starting tomcat.localhost./invoker.Context
      2007-03-05 18:34:49,187 DEBUG [tomcat.localhost./invoker.Context] Configuring default Resources
      2007-03-05 18:34:49,328 DEBUG [tomcat.localhost./invoker.Context] Processing standard container startup
      2007-03-05 18:34:49,390 DEBUG [tomcat.localhost./invoker.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:49,437 DEBUG [tomcat.localhost./invoker.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:49,531 DEBUG [tomcat.localhost./invoker.Context] Posting standard context attributes
      2007-03-05 18:34:49,531 DEBUG [tomcat.localhost./invoker.Context] Configuring application event listeners
      2007-03-05 18:34:49,531 DEBUG [tomcat.localhost./invoker.Context] Sending application start events
      2007-03-05 18:34:49,531 DEBUG [tomcat.localhost./invoker.Context] Starting filters
      2007-03-05 18:34:49,531 DEBUG [tomcat.localhost./invoker.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 18:34:49,546 DEBUG [tomcat.localhost./invoker.Context]  Starting filter 'ReadOnlyAccessFilter'
      2007-03-05 18:34:49,750 DEBUG [tomcat.localhost./invoker.Context] Starting completed
      2007-03-05 18:34:49,750 DEBUG [tomcat.localhost./invoker.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/invoker,J2EEApplication=none,J2EEServer=none
      2007-03-05 18:34:49,859 DEBUG [tomcat.localhost.ROOT.Context] Starting tomcat.localhost.ROOT.Context
      2007-03-05 18:34:49,859 DEBUG [tomcat.localhost.ROOT.Context] Configuring default Resources
      2007-03-05 18:34:49,859 DEBUG [tomcat.localhost.ROOT.Context] No realm for this host null
      2007-03-05 18:34:49,859 DEBUG [tomcat.localhost.ROOT.Context] Processing standard container startup
      2007-03-05 18:34:49,875 DEBUG [tomcat.localhost.ROOT.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:49,906 DEBUG [tomcat.localhost.ROOT.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:49,921 DEBUG [tomcat.localhost.ROOT.Context] Posting standard context attributes
      2007-03-05 18:34:49,921 DEBUG [tomcat.localhost.ROOT.Context] Configuring application event listeners
      2007-03-05 18:34:49,921 DEBUG [tomcat.localhost.ROOT.Context] Sending application start events
      2007-03-05 18:34:49,921 DEBUG [tomcat.localhost.ROOT.Context] Starting filters
      2007-03-05 18:34:49,921 DEBUG [tomcat.localhost.ROOT.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 18:34:49,921 DEBUG [tomcat.localhost.ROOT.Context] Starting completed
      2007-03-05 18:34:49,921 DEBUG [tomcat.localhost.ROOT.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none
      2007-03-05 18:34:50,046 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Starting tomcat.localhost./jbossmq-httpil.Context
      2007-03-05 18:34:50,046 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Configuring default Resources
      2007-03-05 18:34:50,046 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Processing standard container startup
      2007-03-05 18:34:50,062 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:50,078 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:50,093 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Posting standard context attributes
      2007-03-05 18:34:50,093 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Configuring application event listeners
      2007-03-05 18:34:50,093 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Sending application start events
      2007-03-05 18:34:50,093 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Starting filters
      2007-03-05 18:34:50,093 DEBUG [tomcat.localhost./jbossmq-httpil.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 18:34:50,093 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Starting completed
      2007-03-05 18:34:50,093 DEBUG [tomcat.localhost./jbossmq-httpil.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/jbossmq-httpil,J2EEApplication=none,J2EEServer=none
      2007-03-05 18:34:55,390 DEBUG [tomcat.localhost./web-console.Context] Starting tomcat.localhost./web-console.Context
      2007-03-05 18:34:55,390 DEBUG [tomcat.localhost./web-console.Context] Configuring default Resources
      2007-03-05 18:34:55,390 DEBUG [tomcat.localhost./web-console.Context] Processing standard container startup
      2007-03-05 18:34:55,421 DEBUG [tomcat.localhost./web-console.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:55,437 DEBUG [tomcat.localhost./web-console.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:55,453 DEBUG [tomcat.localhost./web-console.Context] Posting standard context attributes
      2007-03-05 18:34:55,453 DEBUG [tomcat.localhost./web-console.Context] Configuring application event listeners
      2007-03-05 18:34:55,453 DEBUG [tomcat.localhost./web-console.Context] Sending application start events
      2007-03-05 18:34:55,453 DEBUG [tomcat.localhost./web-console.Context] Starting filters
      2007-03-05 18:34:55,453 DEBUG [tomcat.localhost./web-console.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 18:34:55,687 DEBUG [tomcat.localhost./web-console.Context] Starting completed
      2007-03-05 18:34:55,687 DEBUG [tomcat.localhost./web-console.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/web-console,J2EEApplication=none,J2EEServer=none
      2007-03-05 18:34:57,375 DEBUG [tomcat.localhost./wfe.Context] Starting tomcat.localhost./wfe.Context
      2007-03-05 18:34:57,375 DEBUG [tomcat.localhost./wfe.Context] Configuring default Resources
      2007-03-05 18:34:57,375 DEBUG [tomcat.localhost./wfe.Context] Processing standard container startup
      2007-03-05 18:34:57,406 DEBUG [tomcat.localhost./wfe.Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      2007-03-05 18:34:57,421 DEBUG [tomcat.localhost./wfe.Context] Setting deployment descriptor public ID to 'null'
      2007-03-05 18:34:57,421 DEBUG [tomcat.localhost./wfe.Context] Posting standard context attributes
      2007-03-05 18:34:57,421 DEBUG [tomcat.localhost./wfe.Context] Configuring application event listeners
      2007-03-05 18:34:57,421 DEBUG [tomcat.localhost./wfe.Context]  Configuring event listener class 'ru.runa.wf.web.servlet.InitializerServletContextListener'
      2007-03-05 18:34:57,437 DEBUG [tomcat.localhost./wfe.Context] Sending application start events
      2007-03-05 18:34:57,437 INFO  [ru.runa.wf.web.servlet.InitializerServletContextListener] initialization started
      2007-03-05 18:34:59,343 ERROR [net.sf.hibernate.util.JDBCExceptionReporter] ORA-00942: table or view does not exist

      2007-03-05 18:34:59,343 ERROR [net.sf.hibernate.util.JDBCExceptionReporter] ORA-00942: table or view does not exist

      2007-03-05 18:34:59,359 INFO  [ru.runa.wf.web.servlet.InitializerServletContextListener] database is not initialized. initializing...
      2007-03-05 18:34:59,375 INFO  [STDOUT] alter table BATCH_PRESENTATIONS drop constraint FK48783814DB317F91
      2007-03-05 18:34:59,390 INFO  [STDOUT] alter table JBPM_DEFINITION drop constraint FK2F4CEE9D66309C76
      2007-03-05 18:34:59,406 INFO  [STDOUT] alter table JBPM_DEFINITION drop constraint FK2F4CEE9DC3893553
      2007-03-05 18:34:59,421 INFO  [STDOUT] alter table JBPM_DEFINITION drop constraint FK2F4CEE9DA1927D4F
      2007-03-05 18:34:59,437 INFO  [STDOUT] alter table SORTED_FIELDS drop constraint FK38F1CA7BB4AB93B
      2007-03-05 18:34:59,453 INFO  [STDOUT] alter table EXECUTOR_GROUP_RELATIONS drop constraint FKD66B5C8B658C7007
      2007-03-05 18:34:59,468 INFO  [STDOUT] alter table EXECUTOR_GROUP_RELATIONS drop constraint FKD66B5C8B4CD4DEFB
      2007-03-05 18:34:59,484 INFO  [STDOUT] alter table CRITERIA_CONDITIONS drop constraint FK7D91A798BC3317B4
      2007-03-05 18:34:59,500 INFO  [STDOUT] alter table SORTING_MODES drop constraint FKCE1FAC75B4AB93B
      2007-03-05 18:34:59,515 INFO  [STDOUT] alter table PERMISSION_MAPPINGS drop constraint FKF10C09D5658C7007
      2007-03-05 18:34:59,531 INFO  [STDOUT] alter table PERMISSION_MAPPINGS drop constraint FKF10C09D5709DC009
      2007-03-05 18:34:59,546 INFO  [STDOUT] alter table FILTER_CRITERIAS drop constraint FKC6A7E0CDB4AB93B
      2007-03-05 18:34:59,562 INFO  [STDOUT] alter table JBPM_VARIABLE drop constraint FKD8CB5A4669B5865
      2007-03-05 18:34:59,578 INFO  [STDOUT] alter table JBPM_VARIABLE drop constraint FKD8CB5A46C3893553
      2007-03-05 18:34:59,593 INFO  [STDOUT] alter table PASSED_TRANSITIONS drop constraint FK522DAC4F84581845
      2007-03-05 18:34:59,609 INFO  [STDOUT] alter table PASSED_TRANSITIONS drop constraint FK522DAC4FCF0F2F15
      2007-03-05 18:34:59,625 INFO  [STDOUT] alter table DISPLAY_FIELDS drop constraint FK6DD5B0F6B4AB93B
      2007-03-05 18:34:59,640 INFO  [STDOUT] alter table JBPM_TYPE drop constraint FKB48F940452D4AD28
      2007-03-05 18:34:59,656 INFO  [STDOUT] alter table JBPM_TYPE drop constraint FKB48F9404C3893553
      2007-03-05 18:34:59,671 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CCFA8C2074
      2007-03-05 18:34:59,687 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CCF41BD495
      2007-03-05 18:34:59,703 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CC52D4AD28
      2007-03-05 18:34:59,734 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CCC3893553
      2007-03-05 18:34:59,750 INFO  [STDOUT] alter table JBPM_NODE drop constraint FKB48CB2CCF41DA4FD
      2007-03-05 18:34:59,765 INFO  [STDOUT] alter table JBPM_TRANSITION drop constraint FK4FF269F1C144
      2007-03-05 18:34:59,781 INFO  [STDOUT] alter table JBPM_TRANSITION drop constraint FK4FF269FC3893553
      2007-03-05 18:34:59,796 INFO  [STDOUT] alter table JBPM_TRANSITION drop constraint FK4FF269F5D2DDF5
      2007-03-05 18:34:59,812 INFO  [STDOUT] alter table JBPM_SWIMLANE drop constraint FK1DD2A83EC3893553
      2007-03-05 18:34:59,828 INFO  [STDOUT] alter table JBPM_SWIMLANE drop constraint FK1DD2A83E52D4AD28
      2007-03-05 18:34:59,859 INFO  [STDOUT] alter table JBPM_ACTION drop constraint FKAD5A7480B5AA0E12
      2007-03-05 18:34:59,875 INFO  [STDOUT] alter table JBPM_ACTION drop constraint FKAD5A7480F2A151BF
      2007-03-05 18:34:59,890 INFO  [STDOUT] alter table JBPM_ACTION drop constraint FKAD5A74809126F810
      2007-03-05 18:34:59,906 INFO  [STDOUT] alter table JBPM_ACTION drop constraint FKAD5A74807E4E3BFE
      2007-03-05 18:34:59,921 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE drop constraint FK236E60DA76CFBBE5
      2007-03-05 18:34:59,937 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE drop constraint FK236E60DA3580E2
      2007-03-05 18:34:59,968 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE drop constraint FK236E60DAC3893553
      2007-03-05 18:34:59,984 INFO  [STDOUT] alter table JBPM_JOB drop constraint FK375F5193696B9F9
      2007-03-05 18:35:00,000 INFO  [STDOUT] alter table JBPM_JOB drop constraint FK375F5193842C3824
      2007-03-05 18:35:00,015 INFO  [STDOUT] alter table JBPM_JOB drop constraint FK375F51937E4E3BFE
      2007-03-05 18:35:00,031 INFO  [STDOUT] alter table JBPM_VARIABLEINSTANCE drop constraint FKC74438DB69B5865
      2007-03-05 18:35:00,046 INFO  [STDOUT] alter table JBPM_VARIABLEINSTANCE drop constraint FKC74438DB696B9F9
      2007-03-05 18:35:00,078 INFO  [STDOUT] alter table ACTIVE_BATCH_PRESENTATIONS drop constraint FKBD27795BDB317F91
      2007-03-05 18:35:00,093 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4F68AC491
      2007-03-05 18:35:00,109 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4FC4AB08AA
      2007-03-05 18:35:00,125 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4F842C3824
      2007-03-05 18:35:00,140 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4FCDC0E9C4
      2007-03-05 18:35:00,156 INFO  [STDOUT] alter table JBPM_TOKEN drop constraint FKDD5E4E4F96611053
      2007-03-05 18:35:00,171 INFO  [STDOUT] alter table GROUP_FIELDS drop constraint FK44F5899B4AB93B
      2007-03-05 18:35:00,203 INFO  [STDOUT] alter table PRIVELEGE_MAPPINGS drop constraint FKEBB7C8D7658C7007
      2007-03-05 18:35:00,218 INFO  [STDOUT] alter table PRIVELEGE_MAPPINGS drop constraint FKEBB7C8D7C6C84BD2
      2007-03-05 18:35:00,234 INFO  [STDOUT] drop table BATCH_PRESENTATIONS cascade constraints
      2007-03-05 18:35:00,250 INFO  [STDOUT] drop table JBPM_DEFINITION cascade constraints
      2007-03-05 18:35:00,281 INFO  [STDOUT] drop table SORTED_FIELDS cascade constraints
      2007-03-05 18:35:00,296 INFO  [STDOUT] drop table EXECUTOR_GROUP_RELATIONS cascade constraints
      2007-03-05 18:35:00,328 INFO  [STDOUT] drop table CRITERIA_CONDITIONS cascade constraints
      2007-03-05 18:35:00,343 INFO  [STDOUT] drop table SORTING_MODES cascade constraints
      2007-03-05 18:35:00,375 INFO  [STDOUT] drop table PERMISSION_MAPPINGS cascade constraints
      2007-03-05 18:35:00,390 INFO  [STDOUT] drop table FILTER_CRITERIAS cascade constraints
      2007-03-05 18:35:00,421 INFO  [STDOUT] drop table JBPM_VARIABLE cascade constraints
      2007-03-05 18:35:00,437 INFO  [STDOUT] drop table WFE_CONSTANTS cascade constraints
      2007-03-05 18:35:00,468 INFO  [STDOUT] drop table PASSED_TRANSITIONS cascade constraints
      2007-03-05 18:35:00,484 INFO  [STDOUT] drop table DISPLAY_FIELDS cascade constraints
      2007-03-05 18:35:00,515 INFO  [STDOUT] drop table JBPM_TYPE cascade constraints
      2007-03-05 18:35:00,531 INFO  [STDOUT] drop table JBPM_NODE cascade constraints
      2007-03-05 18:35:00,562 INFO  [STDOUT] drop table JBPM_TRANSITION cascade constraints
      2007-03-05 18:35:00,578 INFO  [STDOUT] drop table PASSWORDS cascade constraints
      2007-03-05 18:35:00,609 INFO  [STDOUT] drop table JBPM_SWIMLANE cascade constraints
      2007-03-05 18:35:00,625 INFO  [STDOUT] drop table JBPM_ACTION cascade constraints
      2007-03-05 18:35:00,656 INFO  [STDOUT] drop table PROFILES cascade constraints
      2007-03-05 18:35:00,671 INFO  [STDOUT] drop table JBPM_FILE cascade constraints
      2007-03-05 18:35:00,703 INFO  [STDOUT] drop table JBPM_PROCESSINSTANCE cascade constraints
      2007-03-05 18:35:00,718 INFO  [STDOUT] drop table SECURED_OBJECT_TYPES cascade constraints
      2007-03-05 18:35:00,750 INFO  [STDOUT] drop table PROPERTY_IDS cascade constraints
      2007-03-05 18:35:00,765 INFO  [STDOUT] drop table JBPM_JOB cascade constraints
      2007-03-05 18:35:00,796 INFO  [STDOUT] drop table JBPM_VARIABLEINSTANCE cascade constraints
      2007-03-05 18:35:00,812 INFO  [STDOUT] drop table ACTIVE_BATCH_PRESENTATIONS cascade constraints
      2007-03-05 18:35:00,843 INFO  [STDOUT] drop table JBPM_TOKEN cascade constraints
      2007-03-05 18:35:00,859 INFO  [STDOUT] drop table GROUP_FIELDS cascade constraints
      2007-03-05 18:35:00,890 INFO  [STDOUT] drop table JBPM_SEQUENCEBLOCK cascade constraints
      2007-03-05 18:35:00,906 INFO  [STDOUT] drop table PRIVELEGE_MAPPINGS cascade constraints
      2007-03-05 18:35:00,937 INFO  [STDOUT] drop table JBPM_DELEGATION cascade constraints
      2007-03-05 18:35:00,953 INFO  [STDOUT] drop table EXECUTORS cascade constraints
      2007-03-05 18:35:00,984 INFO  [STDOUT] drop table SECURED_OBJECTS cascade constraints
      2007-03-05 18:35:01,000 INFO  [STDOUT] drop sequence hibernate_sequence
      2007-03-05 18:35:01,015 INFO  [STDOUT] create table BATCH_PRESENTATIONS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         RANGE_SIZE number(10,0),
         PRESENTATION_NAME varchar2(128),
         PRESENTATION_ID varchar2(128),
         CLASS_PRESENTATION_ID number(10,0),
         PROFILE_ID number(19,0),
         primary key (ID)
      )
      2007-03-05 18:35:01,312 INFO  [STDOUT] create table JBPM_DEFINITION (
         id number(19,0) not null,
         name varchar2(255) not null,
         description varchar2(255),
         definition number(19,0),
         version_ number(10,0) not null,
         startState number(19,0),
         endState number(19,0),
         primary key (id),
         unique (name, version_)
      )
      2007-03-05 18:35:01,515 INFO  [STDOUT] create table SORTED_FIELDS (
         BATCH_PRESENTATION_ID number(19,0) not null,
         FIELD number(10,0),
         ARRAY_INDEX number(10,0) not null,
         primary key (BATCH_PRESENTATION_ID, ARRAY_INDEX)
      )
      2007-03-05 18:35:01,812 INFO  [STDOUT] create table EXECUTOR_GROUP_RELATIONS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         EXECUTOR_ID number(19,0) not null,
         GROUP_ID number(19,0) not null,
         primary key (ID),
         unique (EXECUTOR_ID, GROUP_ID)
      )
      2007-03-05 18:35:02,031 INFO  [STDOUT] create table CRITERIA_CONDITIONS (
         FILTER_CRITERIA_ID number(19,0) not null,
         CRITERIA_CONDITION varchar2(255),
         CONDITION_INDEX number(10,0) not null,
         primary key (FILTER_CRITERIA_ID, CONDITION_INDEX)
      )
      2007-03-05 18:35:02,296 INFO  [STDOUT] create table SORTING_MODES (
         BATCH_PRESENTATION_ID number(19,0) not null,
         SORTING_MODE number(1,0),
         ARRAY_INDEX number(10,0) not null,
         primary key (BATCH_PRESENTATION_ID, ARRAY_INDEX)
      )
      2007-03-05 18:35:02,562 INFO  [STDOUT] create table PERMISSION_MAPPINGS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         SECURED_OBJECT_ID number(19,0) not null,
         EXECUTOR_ID number(19,0) not null,
         MASK number(19,0) not null,
         primary key (ID),
         unique (SECURED_OBJECT_ID, EXECUTOR_ID, MASK)
      )
      2007-03-05 18:35:02,921 INFO  [STDOUT] create table FILTER_CRITERIAS (
         ID number(19,0) not null,
         CRITERIA_TYPE varchar2(255) not null,
         VERSION number(19,0) not null,
         BATCH_PRESENTATION_ID number(19,0),
         FIELD_INDEX number(10,0),
         primary key (ID)
      )
      2007-03-05 18:35:03,140 INFO  [STDOUT] create table JBPM_VARIABLE (
         id number(19,0) not null,
         name varchar2(255) not null,
         definition number(19,0) not null,
         type_ number(19,0),
         primary key (id)
      )
      2007-03-05 18:35:03,343 INFO  [STDOUT] create table WFE_CONSTANTS (
         ID number(19,0) not null,
         NAME varchar2(255) unique,
         VALUE varchar2(255),
         primary key (ID)
      )
      2007-03-05 18:35:03,750 INFO  [STDOUT] create table PASSED_TRANSITIONS (
         PROCESS_INSTANCE_ID number(19,0) not null,
         TRANSITION_ID number(19,0) not null,
         primary key (PROCESS_INSTANCE_ID, TRANSITION_ID)
      )
      2007-03-05 18:35:04,000 INFO  [STDOUT] create table DISPLAY_FIELDS (
         BATCH_PRESENTATION_ID number(19,0) not null,
         FIELD number(10,0),
         ARRAY_INDEX number(10,0) not null,
         primary key (BATCH_PRESENTATION_ID, ARRAY_INDEX)
      )
      2007-03-05 18:35:04,140 INFO  [STDOUT] create table JBPM_TYPE (
         id number(19,0) not null,
         description varchar2(255),
         javaType varchar2(255) not null,
         delegation number(19,0),
         definition number(19,0),
         index_ number(10,0),
         primary key (id)
      )
      2007-03-05 18:35:04,375 INFO  [STDOUT] create table JBPM_NODE (
         id number(19,0) not null,
         class varchar2(255) not null,
         name varchar2(255) not null,
         description varchar2(255),
         definition number(19,0) not null,
         swimlane number(19,0),
         assignmentRequired number(1,0),
         stateAuthentication varchar2(255),
         delegation number(19,0),
         correspondingJoin number(19,0),
         correspondingFork number(19,0),
         primary key (id)
      )
      2007-03-05 18:35:04,609 INFO  [STDOUT] create table JBPM_TRANSITION (
         id number(19,0) not null,
         name varchar2(255),
         description varchar2(255),
         definition number(19,0) not null,
         from_ number(19,0),
         to_ number(19,0),
         primary key (id)
      )
      2007-03-05 18:35:04,984 INFO  [STDOUT] create table PASSWORDS (
         ACTOR_ID number(19,0) not null,
         PASSWD raw(255) not null,
         primary key (ACTOR_ID)
      )
      2007-03-05 18:35:05,093 INFO  [STDOUT] create table JBPM_SWIMLANE (
         id number(19,0) not null,
         name varchar2(255) not null,
         description varchar2(255),
         definition number(19,0) not null,
         delegation number(19,0),
         primary key (id)
      )
      2007-03-05 18:35:05,421 INFO  [STDOUT] create table JBPM_ACTION (
         id number(19,0) not null,
         eventType varchar2(255),
         actionDelegation number(19,0),
         definition_element number(19,0),
         index_ number(10,0),
         node_element number(19,0),
         transition_element number(19,0),
         primary key (id)
      )
      2007-03-05 18:35:05,656 INFO  [STDOUT] create table PROFILES (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         ACTOR_ID number(19,0) not null unique,
         primary key (ID)
      )
      2007-03-05 18:35:05,906 INFO  [STDOUT] create table JBPM_FILE (
         id number(19,0) not null,
         name varchar2(255) not null,
         definitionId number(19,0) not null,
         bytes long raw,
         primary key (id),
         unique (name, definitionId)
      )
      2007-03-05 18:35:06,421 INFO  [STDOUT] create table JBPM_PROCESSINSTANCE (
         id number(19,0) not null,
         definition number(19,0) not null,
         root number(19,0) not null,
         superProcessToken number(19,0),
         start_ date,
         end_ date,
         primary key (id)
      )
      2007-03-05 18:35:06,484 INFO  [STDOUT] create table SECURED_OBJECT_TYPES (
         ID number(19,0) not null,
         PERMISSION_CLASS_NAME varchar2(255) not null,
         TYPE_CODE number(10,0) unique,
         primary key (ID)
      )
      2007-03-05 18:35:06,890 INFO  [STDOUT] create table PROPERTY_IDS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         NEXT_ID number(19,0),
         CLASS_NAME varchar2(128),
         PROPERTY_NAME varchar2(128),
         primary key (ID),
         unique (CLASS_NAME, PROPERTY_NAME)
      )
      2007-03-05 18:35:07,156 INFO  [STDOUT] create table JBPM_JOB (
         id number(19,0) not null,
         actionDelegation number(19,0),
         token number(19,0),
         processInstance number(19,0),
         dueDate date,
         repeat_ number(19,0),
         reference varchar2(255),
         primary key (id)
      )
      2007-03-05 18:35:07,453 INFO  [STDOUT] create table JBPM_VARIABLEINSTANCE (
         id number(19,0) not null,
         name varchar2(255) not null,
         serializedValue long raw,
         defaultType varchar2(255),
         type_ number(19,0),
         token number(19,0) not null,
         primary key (id)
      )
      2007-03-05 18:35:07,921 INFO  [STDOUT] create table ACTIVE_BATCH_PRESENTATIONS (
         PROFILE_ID number(19,0) not null,
         PRESENTATION_NAME varchar2(255),
         PRESENTATION_ID varchar2(255) not null,
         primary key (PROFILE_ID, PRESENTATION_ID)
      )
      2007-03-05 18:35:08,015 INFO  [STDOUT] create table JBPM_TOKEN (
         id number(19,0) not null,
         TOKEN_NAME varchar2(255) not null,
         processInstance number(19,0),
         parent number(19,0),
         state number(19,0),
         actorId varchar2(255),
         start_ date,
         end_ date,
         reactivationJoin number(19,0),
         subProcessInstance number(19,0),
         primary key (id)
      )
      2007-03-05 18:35:08,359 INFO  [STDOUT] create table GROUP_FIELDS (
         BATCH_PRESENTATION_ID number(19,0) not null,
         FIELD number(10,0),
         ARRAY_INDEX number(10,0) not null,
         primary key (BATCH_PRESENTATION_ID, ARRAY_INDEX)
      )
      2007-03-05 18:35:08,640 INFO  [STDOUT] create table JBPM_SEQUENCEBLOCK (
         id number(19,0) not null,
         nextId number(19,0),
         primary key (id)
      )
      2007-03-05 18:35:08,703 INFO  [STDOUT] create table PRIVELEGE_MAPPINGS (
         TYPE_CODE number(19,0) not null,
         EXECUTOR_ID number(19,0) not null,
         primary key (TYPE_CODE, EXECUTOR_ID)
      )
      2007-03-05 18:35:08,953 INFO  [STDOUT] create table JBPM_DELEGATION (
         id number(19,0) not null,
         className varchar2(255),
         configuration long,
         primary key (id)
      )
      2007-03-05 18:35:09,000 INFO  [STDOUT] create table EXECUTORS (
         ID number(19,0) not null,
         IS_GROUP number(1,0) not null,
         VERSION number(19,0) not null,
         NAME varchar2(255) not null unique,
         DESCRIPTION varchar2(255),
         FULL_NAME varchar2(255),
         CODE number(19,0),
         primary key (ID)
      )
      2007-03-05 18:35:09,484 INFO  [STDOUT] create table SECURED_OBJECTS (
         ID number(19,0) not null,
         VERSION number(19,0) not null,
         EXT_ID number(19,0),
         TYPE_CODE number(10,0),
         primary key (ID),
         unique (EXT_ID, TYPE_CODE)
      )
      2007-03-05 18:35:09,734 INFO  [STDOUT] create index PRESENTATION_NAME_ID_IDX on BATCH_PRESENTATIONS (PRESENTATION_NAME, PRESENTATION_ID)
      2007-03-05 18:35:09,765 INFO  [STDOUT] alter table BATCH_PRESENTATIONS add constraint FK48783814DB317F91 foreign key (PROFILE_ID) references PROFILES
      2007-03-05 18:35:09,890 INFO  [STDOUT] create index JBPM_DEFINITION_NAME_IDX on JBPM_DEFINITION (name)
      2007-03-05 18:35:10,140 INFO  [STDOUT] alter table JBPM_DEFINITION add constraint FK2F4CEE9D66309C76 foreign key (endState) references JBPM_NODE
      2007-03-05 18:35:10,156 INFO  [STDOUT] alter table JBPM_DEFINITION add constraint FK2F4CEE9DC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 18:35:10,187 INFO  [STDOUT] alter table JBPM_DEFINITION add constraint FK2F4CEE9DA1927D4F foreign key (startState) references JBPM_NODE
      2007-03-05 18:35:10,218 INFO  [STDOUT] alter table SORTED_FIELDS add constraint FK38F1CA7BB4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 18:35:10,250 INFO  [STDOUT] create index EXECUTOR_GROUP_RELATIONS_EXECUTOR_ID_IDX on EXECUTOR_GROUP_RELATIONS (EXECUTOR_ID)
      2007-03-05 18:35:10,281 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index EXECUTOR_GROUP_RELATIONS_EXECUTOR_ID_IDX on EXECUTOR_GROUP_RELATIONS (EXECUTOR_ID)
      2007-03-05 18:35:10,281 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 18:35:10,281 INFO  [STDOUT] create index EXECUTOR_GROUP_RELATIONS_GROUP_ID_IDX on EXECUTOR_GROUP_RELATIONS (GROUP_ID)
      2007-03-05 18:35:10,312 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index EXECUTOR_GROUP_RELATIONS_GROUP_ID_IDX on EXECUTOR_GROUP_RELATIONS (GROUP_ID)
      2007-03-05 18:35:10,312 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 18:35:10,312 INFO  [STDOUT] alter table EXECUTOR_GROUP_RELATIONS add constraint FKD66B5C8B658C7007 foreign key (EXECUTOR_ID) references EXECUTORS
      2007-03-05 18:35:10,343 INFO  [STDOUT] alter table EXECUTOR_GROUP_RELATIONS add constraint FKD66B5C8B4CD4DEFB foreign key (GROUP_ID) references EXECUTORS
      2007-03-05 18:35:10,375 INFO  [STDOUT] alter table CRITERIA_CONDITIONS add constraint FK7D91A798BC3317B4 foreign key (FILTER_CRITERIA_ID) references FILTER_CRITERIAS
      2007-03-05 18:35:10,406 INFO  [STDOUT] alter table SORTING_MODES add constraint FKCE1FAC75B4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 18:35:10,437 INFO  [STDOUT] create index PERMISSION_MAPPINGS_EXECUTOR_ID_IDX on PERMISSION_MAPPINGS (EXECUTOR_ID)
      2007-03-05 18:35:10,468 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index PERMISSION_MAPPINGS_EXECUTOR_ID_IDX on PERMISSION_MAPPINGS (EXECUTOR_ID)
      2007-03-05 18:35:10,468 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 18:35:10,484 INFO  [STDOUT] create index PERMISSION_MAPPINGS_SECURED_OBJECT_ID_IDX on PERMISSION_MAPPINGS (SECURED_OBJECT_ID)
      2007-03-05 18:35:10,500 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index PERMISSION_MAPPINGS_SECURED_OBJECT_ID_IDX on PERMISSION_MAPPINGS (SECURED_OBJECT_ID)
      2007-03-05 18:35:10,515 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 18:35:10,515 INFO  [STDOUT] alter table PERMISSION_MAPPINGS add constraint FKF10C09D5658C7007 foreign key (EXECUTOR_ID) references EXECUTORS
      2007-03-05 18:35:10,593 INFO  [STDOUT] alter table PERMISSION_MAPPINGS add constraint FKF10C09D5709DC009 foreign key (SECURED_OBJECT_ID) references SECURED_OBJECTS
      2007-03-05 18:35:10,609 INFO  [STDOUT] alter table FILTER_CRITERIAS add constraint FKC6A7E0CDB4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 18:35:10,625 INFO  [STDOUT] alter table JBPM_VARIABLE add constraint FKD8CB5A4669B5865 foreign key (type_) references JBPM_TYPE
      2007-03-05 18:35:10,656 INFO  [STDOUT] alter table JBPM_VARIABLE add constraint FKD8CB5A46C3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 18:35:10,671 INFO  [STDOUT] alter table PASSED_TRANSITIONS add constraint FK522DAC4F84581845 foreign key (TRANSITION_ID) references JBPM_TRANSITION
      2007-03-05 18:35:10,703 INFO  [STDOUT] alter table PASSED_TRANSITIONS add constraint FK522DAC4FCF0F2F15 foreign key (PROCESS_INSTANCE_ID) references JBPM_PROCESSINSTANCE
      2007-03-05 18:35:10,718 INFO  [STDOUT] alter table DISPLAY_FIELDS add constraint FK6DD5B0F6B4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 18:35:10,734 INFO  [STDOUT] alter table JBPM_TYPE add constraint FKB48F940452D4AD28 foreign key (delegation) references JBPM_DELEGATION
      2007-03-05 18:35:10,750 INFO  [STDOUT] alter table JBPM_TYPE add constraint FKB48F9404C3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 18:35:10,781 INFO  [STDOUT] create index JBPM_NODE_SWIMLANE_ID_IDX on JBPM_NODE (swimlane)
      2007-03-05 18:35:10,812 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CCFA8C2074 foreign key (swimlane) references JBPM_SWIMLANE
      2007-03-05 18:35:10,828 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CCF41BD495 foreign key (correspondingFork) references JBPM_NODE
      2007-03-05 18:35:10,890 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CC52D4AD28 foreign key (delegation) references JBPM_DELEGATION
      2007-03-05 18:35:10,984 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CCC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 18:35:11,015 INFO  [STDOUT] alter table JBPM_NODE add constraint FKB48CB2CCF41DA4FD foreign key (correspondingJoin) references JBPM_NODE
      2007-03-05 18:35:11,046 INFO  [STDOUT] alter table JBPM_TRANSITION add constraint FK4FF269F1C144 foreign key (to_) references JBPM_NODE
      2007-03-05 18:35:11,093 INFO  [STDOUT] alter table JBPM_TRANSITION add constraint FK4FF269FC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 18:35:11,125 INFO  [STDOUT] alter table JBPM_TRANSITION add constraint FK4FF269F5D2DDF5 foreign key (from_) references JBPM_NODE
      2007-03-05 18:35:11,140 INFO  [STDOUT] alter table JBPM_SWIMLANE add constraint FK1DD2A83EC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 18:35:11,171 INFO  [STDOUT] alter table JBPM_SWIMLANE add constraint FK1DD2A83E52D4AD28 foreign key (delegation) references JBPM_DELEGATION
      2007-03-05 18:35:11,203 INFO  [STDOUT] alter table JBPM_ACTION add constraint FKAD5A7480B5AA0E12 foreign key (transition_element) references JBPM_TRANSITION
      2007-03-05 18:35:11,265 INFO  [STDOUT] alter table JBPM_ACTION add constraint FKAD5A7480F2A151BF foreign key (node_element) references JBPM_NODE
      2007-03-05 18:35:11,296 INFO  [STDOUT] alter table JBPM_ACTION add constraint FKAD5A74809126F810 foreign key (definition_element) references JBPM_DEFINITION
      2007-03-05 18:35:11,328 INFO  [STDOUT] alter table JBPM_ACTION add constraint FKAD5A74807E4E3BFE foreign key (actionDelegation) references JBPM_DELEGATION
      2007-03-05 18:35:11,359 INFO  [STDOUT] create index JBPM_PROCESSINSTANCE_DEFINITION_ID_IDX on JBPM_PROCESSINSTANCE (definition)
      2007-03-05 18:35:11,390 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index JBPM_PROCESSINSTANCE_DEFINITION_ID_IDX on JBPM_PROCESSINSTANCE (definition)
      2007-03-05 18:35:11,390 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 18:35:11,390 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE add constraint FK236E60DA76CFBBE5 foreign key (superProcessToken) references JBPM_TOKEN
      2007-03-05 18:35:11,437 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE add constraint FK236E60DA3580E2 foreign key (root) references JBPM_TOKEN
      2007-03-05 18:35:11,468 INFO  [STDOUT] alter table JBPM_PROCESSINSTANCE add constraint FK236E60DAC3893553 foreign key (definition) references JBPM_DEFINITION
      2007-03-05 18:35:11,546 INFO  [STDOUT] alter table JBPM_JOB add constraint FK375F5193696B9F9 foreign key (token) references JBPM_TOKEN
      2007-03-05 18:35:11,593 INFO  [STDOUT] alter table JBPM_JOB add constraint FK375F5193842C3824 foreign key (processInstance) references JBPM_PROCESSINSTANCE
      2007-03-05 18:35:11,640 INFO  [STDOUT] alter table JBPM_JOB add constraint FK375F51937E4E3BFE foreign key (actionDelegation) references JBPM_DELEGATION
      2007-03-05 18:35:11,734 INFO  [STDOUT] create index JBPM_VARIABLEINSTANCE_TOKEN_ID_IDX on JBPM_VARIABLEINSTANCE (token)
      2007-03-05 18:35:11,765 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index JBPM_VARIABLEINSTANCE_TOKEN_ID_IDX on JBPM_VARIABLEINSTANCE (token)
      2007-03-05 18:35:11,765 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 18:35:11,765 INFO  [STDOUT] alter table JBPM_VARIABLEINSTANCE add constraint FKC74438DB69B5865 foreign key (type_) references JBPM_TYPE
      2007-03-05 18:35:11,812 INFO  [STDOUT] alter table JBPM_VARIABLEINSTANCE add constraint FKC74438DB696B9F9 foreign key (token) references JBPM_TOKEN
      2007-03-05 18:35:11,843 INFO  [STDOUT] alter table ACTIVE_BATCH_PRESENTATIONS add constraint FKBD27795BDB317F91 foreign key (PROFILE_ID) references PROFILES
      2007-03-05 18:35:11,906 INFO  [STDOUT] create index JBPM_TOKEN_PROCESSINSTANCE_ID_IDX on JBPM_TOKEN (processInstance)
      2007-03-05 18:35:11,921 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] Unsuccessful: create index JBPM_TOKEN_PROCESSINSTANCE_ID_IDX on JBPM_TOKEN (processInstance)
      2007-03-05 18:35:11,937 ERROR [net.sf.hibernate.tool.hbm2ddl.SchemaExport] ORA-00972: identifier is too long

      2007-03-05 18:35:11,937 INFO  [STDOUT] create index JBPM_TOKEN_STATE_ID_IDX on JBPM_TOKEN (state)
      2007-03-05 18:35:12,171 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4F68AC491 foreign key (state) references JBPM_NODE
      2007-03-05 18:35:12,187 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4FC4AB08AA foreign key (parent) references JBPM_TOKEN
      2007-03-05 18:35:12,218 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4F842C3824 foreign key (processInstance) references JBPM_PROCESSINSTANCE
      2007-03-05 18:35:12,234 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4FCDC0E9C4 foreign key (subProcessInstance) references JBPM_PROCESSINSTANCE
      2007-03-05 18:35:12,265 INFO  [STDOUT] alter table JBPM_TOKEN add constraint FKDD5E4E4F96611053 foreign key (reactivationJoin) references JBPM_NODE
      2007-03-05 18:35:12,281 INFO  [STDOUT] alter table GROUP_FIELDS add constraint FK44F5899B4AB93B foreign key (BATCH_PRESENTATION_ID) references BATCH_PRESENTATIONS
      2007-03-05 18:35:12,312 INFO  [STDOUT] alter table PRIVELEGE_MAPPINGS add constraint FKEBB7C8D7658C7007 foreign key (EXECUTOR_ID) references EXECUTORS
      2007-03-05 18:35:12,359 INFO  [STDOUT] alter table PRIVELEGE_MAPPINGS add constraint FKEBB7C8D7C6C84BD2 foreign key (TYPE_CODE) references SECURED_OBJECT_TYPES
      2007-03-05 18:35:12,390 INFO  [STDOUT] create index EXECUTORS_CODE_IDX on EXECUTORS (CODE)
      2007-03-05 18:35:12,421 INFO  [STDOUT] create sequence hibernate_sequence
      2007-03-05 18:35:12,640 ERROR [org.jboss.ejb.plugins.LogInterceptor] RuntimeException in method: public abstract void ru.runa.af.service.impl.interfaces.InitializerService.init() throws ru.runa.af.InternalApplicationException,java.rmi.RemoteException
      ru.runa.af.InternalApplicationException: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.logic.AFInitializerLogic.exportDataInternal(AFInitializerLogic.java:108)
          at ru.runa.af.logic.InitializerLogic.init(InitializerLogic.java:57)
          at ru.runa.af.service.impl.ejb.InitializerServiceBean.init(InitializerServiceBean.java:70)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:698)
          at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:198)
          at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:87)
          at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:101)
          at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:348)
          at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:179)
          at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:120)
          at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:206)
          at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)
          at org.jboss.ejb.StatelessSessionContainer.internalInvoke(StatelessSessionContainer.java:345)
          at org.jboss.ejb.Container.invoke(Container.java:723)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:111)
          at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:193)
          at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:179)
          at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
          at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
          at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:115)
          at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
          at $Proxy66.init(Unknown Source)
          at ru.runa.af.delegate.impl.InitializerServiceDelegateRemoteImpl.init(InitializerServiceDelegateRemoteImpl.java:50)
          at ru.runa.wf.web.servlet.InitializerServletContextListener.contextInitialized(InitializerServletContextListener.java:47)
          at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3831)
          at org.apache.catalina.core.StandardContext.start(StandardContext.java:4323)
          at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
          at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
          at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
          at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:163)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.apache.catalina.core.StandardContext.init(StandardContext.java:5456)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
          at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:163)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:288)
          at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:98)
          at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:334)
          at org.jboss.web.WebModule.startModule(WebModule.java:83)
          at org.jboss.web.WebModule.startService(WebModule.java:61)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
          at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
          at $Proxy0.start(Unknown Source)
          at org.jboss.system.ServiceController.start(ServiceController.java:404)
          at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy27.start(Unknown Source)
          at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:371)
          at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
          at sun.reflect.GeneratedMethodAccessor37.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy7.deploy(Unknown Source)
          at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:316)
          at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:490)
          at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:213)
          at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:286)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
          at $Proxy0.start(Unknown Source)
          at org.jboss.system.ServiceController.start(ServiceController.java:404)
          at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy4.start(Unknown Source)
          at org.jboss.deployment.SARDeployer.start(SARDeployer.java:263)
          at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:600)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy5.deploy(Unknown Source)
          at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:462)
          at org.jboss.system.server.ServerImpl.start(ServerImpl.java:353)
          at org.jboss.Main.boot(Main.java:201)
          at org.jboss.Main$1.run(Main.java:459)
          at java.lang.Thread.run(Thread.java:595)
      Caused by: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.dao.impl.SecuredObjectDAOHibernateImpl.get(SecuredObjectDAOHibernateImpl.java:124)
          at ru.runa.af.logic.AFInitializerLogic.grantDefaultExecutorsPermissions(AFInitializerLogic.java:156)
          at ru.runa.wf.logic.WFInitializerLogic.grantDefaultExecutorsPermissions(WFInitializerLogic.java:72)
          at ru.runa.af.logic.AFInitializerLogic.exportDataInternal(AFInitializerLogic.java:95)
          ... 154 more
      2007-03-05 18:35:12,921 ERROR [ru.runa.af.delegate.impl.InitializerServiceDelegateRemoteImpl] java.rmi.ServerException: RuntimeException; nested exception is:
          ru.runa.af.InternalApplicationException: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
      2007-03-05 18:35:12,921 FATAL [ru.runa.wf.web.servlet.InitializerServletContextListener] initialization failed
      ru.runa.af.InternalApplicationException: ru.runa.af.InternalApplicationException: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.delegate.impl.RemoteDelegate.substituteRemoteExceptionWithNullPointerExceptionIfPossible(RemoteDelegate.java:149)
          at ru.runa.af.delegate.impl.InitializerServiceDelegateRemoteImpl.init(InitializerServiceDelegateRemoteImpl.java:54)
          at ru.runa.wf.web.servlet.InitializerServletContextListener.contextInitialized(InitializerServletContextListener.java:47)
          at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3831)
          at org.apache.catalina.core.StandardContext.start(StandardContext.java:4323)
          at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
          at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
          at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
          at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:163)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.apache.catalina.core.StandardContext.init(StandardContext.java:5456)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
          at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:163)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:288)
          at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:98)
          at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:334)
          at org.jboss.web.WebModule.startModule(WebModule.java:83)
          at org.jboss.web.WebModule.startService(WebModule.java:61)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
          at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
          at $Proxy0.start(Unknown Source)
          at org.jboss.system.ServiceController.start(ServiceController.java:404)
          at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy27.start(Unknown Source)
          at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:371)
          at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
          at sun.reflect.GeneratedMethodAccessor37.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy7.deploy(Unknown Source)
          at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:316)
          at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:490)
          at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:213)
          at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:286)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
          at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:968)
          at $Proxy0.start(Unknown Source)
          at org.jboss.system.ServiceController.start(ServiceController.java:404)
          at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy4.start(Unknown Source)
          at org.jboss.deployment.SARDeployer.start(SARDeployer.java:263)
          at org.jboss.deployment.MainDeployer.start(MainDeployer.java:841)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:653)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:616)
          at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:600)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:184)
          at $Proxy5.deploy(Unknown Source)
          at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:462)
          at org.jboss.system.server.ServerImpl.start(ServerImpl.java:353)
          at org.jboss.Main.boot(Main.java:201)
          at org.jboss.Main$1.run(Main.java:459)
          at java.lang.Thread.run(Thread.java:595)
      Caused by: ru.runa.af.InternalApplicationException: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.logic.AFInitializerLogic.exportDataInternal(AFInitializerLogic.java:108)
          at ru.runa.af.logic.InitializerLogic.init(InitializerLogic.java:57)
          at ru.runa.af.service.impl.ejb.InitializerServiceBean.init(InitializerServiceBean.java:70)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:698)
          at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:198)
          at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:87)
          at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:101)
          at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:348)
          at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:179)
          at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:120)
          at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:206)
          at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)
          at org.jboss.ejb.StatelessSessionContainer.internalInvoke(StatelessSessionContainer.java:345)
          at org.jboss.ejb.Container.invoke(Container.java:723)
          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
          at java.lang.reflect.Method.invoke(Method.java:585)
          at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:74)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:76)
          at org.jboss.mx.server.Invocation.dispatch(Invocation.java:68)
          at org.jboss.mx.server.Invocation.invoke(Invocation.java:96)
          at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:213)
          at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:484)
          at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:111)
          at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:193)
          at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:179)
          at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
          at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
          at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:115)
          at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
          at $Proxy66.init(Unknown Source)
          at ru.runa.af.delegate.impl.InitializerServiceDelegateRemoteImpl.init(InitializerServiceDelegateRemoteImpl.java:50)
          ... 118 more
      Caused by: ru.runa.af.SecuredObjectOutOfDateException: Secured object with extId 4 and type -978370909 does not exists
          at ru.runa.af.dao.impl.SecuredObjectDAOHibernateImpl.get(SecuredObjectDAOHibernateImpl.java:124)
          at ru.runa.af.logic.AFInitializerLogic.grantDefaultExecutorsPermissions(AFInitializerLogic.java:156)
          at ru.runa.wf.logic.WFInitializerLogic.grantDefaultExecutorsPermissions(WFInitializerLogic.java:72)
          at ru.runa.af.logic.AFInitializerLogic.exportDataInternal(AFInitializerLogic.java:95)
          ... 154 more
      2007-03-05 18:35:13,218 DEBUG [tomcat.localhost./wfe.Context] Starting filters
      2007-03-05 18:35:13,218 DEBUG [tomcat.localhost./wfe.Context]  Starting filter 'ntlmfilter'
      2007-03-05 18:35:13,218 DEBUG [tomcat.localhost./wfe.Context]  Starting filter 'CommonHeadersFilter'
      2007-03-05 18:35:13,437 DEBUG [tomcat.localhost./wfe.Context] Starting completed
      2007-03-05 18:35:13,437 DEBUG [tomcat.localhost./wfe.Context] Checking for jboss.web:j2eeType=WebModule,name=//localhost/wfe,J2EEApplication=none,J2EEServer=none
      2007-03-05 18:35:13,468 ERROR [org.jboss.web.tomcat.tc5.session.JBossCacheManager] JBossCacheService to Tomcat clustering not found
      2007-03-05 18:35:13,468 ERROR [org.jboss.web.tomcat.tc5.TomcatDeployer] Failed to setup clustering, clustering disabled
      2007-03-05 18:35:13,500 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment listing:

      --- MBeans waiting for other MBeans ---
      ObjectName: jboss.mq:service=PersistenceManager
        State: FAILED
        Reason: org.jboss.mq.SpyJMSException: Could not resolve uncommited transactions.  Message recovery may not be accurate; - nested throwable: (java.sql.SQLException: ORA-00942: table or view does not exist
      )
        I Depend On:
          jboss.jca:service=LocalTxCM,name=DefaultDS
        Depends On Me:
          jboss.mq:service=DestinationManager

      --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
      ObjectName: jboss.mq:service=PersistenceManager
        State: FAILED
        Reason: org.jboss.mq.SpyJMSException: Could not resolve uncommited transactions.  Message recovery may not be accurate; - nested throwable: (java.sql.SQLException: ORA-00942: table or view does not exist
      )
        I Depend On:
          jboss.jca:service=LocalTxCM,name=DefaultDS
        Depends On Me:
          jboss.mq:service=DestinationManager

      Thanks for your help,
      Regards

       

Log in to post a comment.