Closed 95pratik closed 5 years ago
looks very strange... can you post your standalone.xml file from jboss. Interesting part is the datasource configuration section.
<extensions>
<extension module="org.jboss.as.clustering.infinispan"/>
<extension module="org.jboss.as.connector"/>
<extension module="org.jboss.as.deployment-scanner"/>
<extension module="org.jboss.as.ee"/>
<extension module="org.jboss.as.ejb3"/>
<extension module="org.jboss.as.jaxrs"/>
<extension module="org.jboss.as.jdr"/>
<extension module="org.jboss.as.jmx"/>
<extension module="org.jboss.as.jpa"/>
<extension module="org.jboss.as.jsf"/>
<extension module="org.jboss.as.logging"/>
<extension module="org.jboss.as.mail"/>
<extension module="org.jboss.as.naming"/>
<extension module="org.jboss.as.pojo"/>
<extension module="org.jboss.as.remoting"/>
<extension module="org.jboss.as.sar"/>
<extension module="org.jboss.as.security"/>
<extension module="org.jboss.as.transactions"/>
<extension module="org.jboss.as.webservices"/>
<extension module="org.jboss.as.weld"/>
<extension module="org.wildfly.extension.batch.jberet"/>
<extension module="org.wildfly.extension.bean-validation"/>
<extension module="org.wildfly.extension.core-management"/>
<extension module="org.wildfly.extension.discovery"/>
<extension module="org.wildfly.extension.ee-security"/>
<extension module="org.wildfly.extension.elytron"/>
<extension module="org.wildfly.extension.io"/>
<extension module="org.wildfly.extension.microprofile.config-smallrye"/>
<extension module="org.wildfly.extension.microprofile.health-smallrye"/>
<extension module="org.wildfly.extension.microprofile.opentracing-smallrye"/>
<extension module="org.wildfly.extension.request-controller"/>
<extension module="org.wildfly.extension.security.manager"/>
<extension module="org.wildfly.extension.undertow"/>
</extensions>
<system-properties>
<property name="eclipselink.archive.factory" value="org.jipijapa.eclipselink.JBossArchiveFactoryImpl"/>
</system-properties>
<management>
<security-realms>
<security-realm name="ManagementRealm">
<authentication>
<local default-user="$local" skip-group-loading="true"/>
<properties path="mgmt-users.properties" relative-to="jboss.server.config.dir"/>
</authentication>
<authorization map-groups-to-roles="false">
<properties path="mgmt-groups.properties" relative-to="jboss.server.config.dir"/>
</authorization>
</security-realm>
<security-realm name="ApplicationRealm">
<server-identities>
<ssl>
<keystore path="application.keystore" relative-to="jboss.server.config.dir" keystore-password="password" alias="server" key-password="password" generate-self-signed-certificate-host="localhost"/>
</ssl>
</server-identities>
<authentication>
<local default-user="$local" allowed-users="*" skip-group-loading="true"/>
<properties path="application-users.properties" relative-to="jboss.server.config.dir"/>
</authentication>
<authorization>
<properties path="application-roles.properties" relative-to="jboss.server.config.dir"/>
</authorization>
</security-realm>
</security-realms>
<audit-log>
<formatters>
<json-formatter name="json-formatter"/>
</formatters>
<handlers>
<file-handler name="file" formatter="json-formatter" path="audit-log.log" relative-to="jboss.server.data.dir"/>
</handlers>
<logger log-boot="true" log-read-only="false" enabled="false">
<handlers>
<handler name="file"/>
</handlers>
</logger>
</audit-log>
<management-interfaces>
<http-interface security-realm="ManagementRealm">
<http-upgrade enabled="true"/>
<socket-binding http="management-http"/>
</http-interface>
</management-interfaces>
<access-control provider="simple">
<role-mapping>
<role name="SuperUser">
<include>
<user name="$local"/>
</include>
</role>
</role-mapping>
</access-control>
</management>
<profile>
<subsystem xmlns="urn:jboss:domain:logging:6.0">
<console-handler name="CONSOLE">
<level name="INFO"/>
<formatter>
<named-formatter name="COLOR-PATTERN"/>
</formatter>
</console-handler>
<periodic-rotating-file-handler name="FILE" autoflush="true">
<formatter>
<named-formatter name="PATTERN"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="server.log"/>
<suffix value=".yyyy-MM-dd"/>
<append value="true"/>
</periodic-rotating-file-handler>
<logger category="com.arjuna">
<level name="WARN"/>
</logger>
<logger category="org.jboss.as.config">
<level name="DEBUG"/>
</logger>
<logger category="sun.rmi">
<level name="WARN"/>
</logger>
<root-logger>
<level name="INFO"/>
<handlers>
<handler name="CONSOLE"/>
<handler name="FILE"/>
</handlers>
</root-logger>
<formatter name="PATTERN">
<pattern-formatter pattern="%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %s%e%n"/>
</formatter>
<formatter name="COLOR-PATTERN">
<pattern-formatter pattern="%K{level}%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%e%n"/>
</formatter>
</subsystem>
<subsystem xmlns="urn:jboss:domain:batch-jberet:2.0">
<default-job-repository name="in-memory"/>
<default-thread-pool name="batch"/>
<job-repository name="in-memory">
<in-memory/>
</job-repository>
<thread-pool name="batch">
<max-threads count="10"/>
<keepalive-time time="30" unit="seconds"/>
</thread-pool>
</subsystem>
<subsystem xmlns="urn:jboss:domain:bean-validation:1.0"/>
<subsystem xmlns="urn:jboss:domain:core-management:1.0"/>
<subsystem xmlns="urn:jboss:domain:datasources:5.0">
<datasources>
<datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true">
<connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE</connection-url>
<driver>h2</driver>
<security>
<user-name>sa</user-name>
<password>sa</password>
</security>
</datasource>
<datasource jndi-name="java:/jdbc/workflow" pool-name="workflow">
<connection-url>jdbc:mysql://localhost:3306/imixs</connection-url>
<driver-class>com.mysql.jdbc.Driver</driver-class>
<driver>mysql-connector-java-5.1.6.jar</driver>
<security>
<user-name>root</user-name>
<password>admin</password>
</security>
<validation>
<valid-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.mysql.MySQLValidConnectionChecker"/>
<background-validation>true</background-validation>
<exception-sorter class-name="org.jboss.jca.adapters.jdbc.extensions.mysql.MySQLExceptionSorter"/>
</validation>
</datasource>
<drivers>
<driver name="h2" module="com.h2database.h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
</drivers>
</datasources>
</subsystem>
<subsystem xmlns="urn:jboss:domain:deployment-scanner:2.0">
<deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" runtime-failure-causes-rollback="${jboss.deployment.scanner.rollback.on.failure:false}"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:discovery:1.0"/>
<subsystem xmlns="urn:jboss:domain:ee:4.0">
<spec-descriptor-property-replacement>false</spec-descriptor-property-replacement>
<concurrent>
<context-services>
<context-service name="default" jndi-name="java:jboss/ee/concurrency/context/default" use-transaction-setup-provider="true"/>
</context-services>
<managed-thread-factories>
<managed-thread-factory name="default" jndi-name="java:jboss/ee/concurrency/factory/default" context-service="default"/>
</managed-thread-factories>
<managed-executor-services>
<managed-executor-service name="default" jndi-name="java:jboss/ee/concurrency/executor/default" context-service="default" hung-task-threshold="60000" keepalive-time="5000"/>
</managed-executor-services>
<managed-scheduled-executor-services>
<managed-scheduled-executor-service name="default" jndi-name="java:jboss/ee/concurrency/scheduler/default" context-service="default" hung-task-threshold="60000" keepalive-time="3000"/>
</managed-scheduled-executor-services>
</concurrent>
<default-bindings context-service="java:jboss/ee/concurrency/context/default" datasource="java:jboss/datasources/ExampleDS" managed-executor-service="java:jboss/ee/concurrency/executor/default" managed-scheduled-executor-service="java:jboss/ee/concurrency/scheduler/default" managed-thread-factory="java:jboss/ee/concurrency/factory/default"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:ee-security:1.0"/>
<subsystem xmlns="urn:jboss:domain:ejb3:5.0">
<session-bean>
<stateless>
<bean-instance-pool-ref pool-name="slsb-strict-max-pool"/>
</stateless>
<stateful default-access-timeout="5000" cache-ref="simple" passivation-disabled-cache-ref="simple"/>
<singleton default-access-timeout="5000"/>
</session-bean>
<pools>
<bean-instance-pools>
<strict-max-pool name="mdb-strict-max-pool" derive-size="from-cpu-count" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
<strict-max-pool name="slsb-strict-max-pool" derive-size="from-worker-pools" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
</bean-instance-pools>
</pools>
<caches>
<cache name="simple"/>
<cache name="distributable" passivation-store-ref="infinispan" aliases="passivating clustered"/>
</caches>
<passivation-stores>
<passivation-store name="infinispan" cache-container="ejb" max-size="10000"/>
</passivation-stores>
<async thread-pool-name="default"/>
<timer-service thread-pool-name="default" default-data-store="default-file-store">
<data-stores>
<file-data-store name="default-file-store" path="timer-service-data" relative-to="jboss.server.data.dir"/>
</data-stores>
</timer-service>
<remote connector-ref="http-remoting-connector" thread-pool-name="default">
<channel-creation-options>
<option name="READ_TIMEOUT" value="${prop.remoting-connector.read.timeout:20}" type="xnio"/>
<option name="MAX_OUTBOUND_MESSAGES" value="1234" type="remoting"/>
</channel-creation-options>
</remote>
<thread-pools>
<thread-pool name="default">
<max-threads count="10"/>
<keepalive-time time="100" unit="milliseconds"/>
</thread-pool>
</thread-pools>
<default-security-domain value="other"/>
<default-missing-method-permissions-deny-access value="true"/>
<log-system-exceptions value="true"/>
</subsystem>
<subsystem xmlns="urn:wildfly:elytron:4.0" final-providers="combined-providers" disallowed-providers="OracleUcrypto">
<providers>
<aggregate-providers name="combined-providers">
<providers name="elytron"/>
<providers name="openssl"/>
</aggregate-providers>
<provider-loader name="elytron" module="org.wildfly.security.elytron"/>
<provider-loader name="openssl" module="org.wildfly.openssl"/>
</providers>
<audit-logging>
<file-audit-log name="local-audit" path="audit.log" relative-to="jboss.server.log.dir" format="JSON"/>
</audit-logging>
<security-domains>
<security-domain name="ApplicationDomain" default-realm="ApplicationRealm" permission-mapper="default-permission-mapper">
<realm name="ApplicationRealm" role-decoder="groups-to-roles"/>
<realm name="local"/>
</security-domain>
<security-domain name="ManagementDomain" default-realm="ManagementRealm" permission-mapper="default-permission-mapper">
<realm name="ManagementRealm" role-decoder="groups-to-roles"/>
<realm name="local" role-mapper="super-user-mapper"/>
</security-domain>
</security-domains>
<security-realms>
<identity-realm name="local" identity="$local"/>
<properties-realm name="ApplicationRealm">
<users-properties path="application-users.properties" relative-to="jboss.server.config.dir" digest-realm-name="ApplicationRealm"/>
<groups-properties path="application-roles.properties" relative-to="jboss.server.config.dir"/>
</properties-realm>
<properties-realm name="ManagementRealm">
<users-properties path="mgmt-users.properties" relative-to="jboss.server.config.dir" digest-realm-name="ManagementRealm"/>
<groups-properties path="mgmt-groups.properties" relative-to="jboss.server.config.dir"/>
</properties-realm>
</security-realms>
<mappers>
<simple-permission-mapper name="default-permission-mapper" mapping-mode="first">
<permission-mapping>
<principal name="anonymous"/>
<permission-set name="default-permissions"/>
</permission-mapping>
<permission-mapping match-all="true">
<permission-set name="login-permission"/>
<permission-set name="default-permissions"/>
</permission-mapping>
</simple-permission-mapper>
<constant-realm-mapper name="local" realm-name="local"/>
<simple-role-decoder name="groups-to-roles" attribute="groups"/>
<constant-role-mapper name="super-user-mapper">
<role name="SuperUser"/>
</constant-role-mapper>
</mappers>
<permission-sets>
<permission-set name="login-permission">
<permission class-name="org.wildfly.security.auth.permission.LoginPermission"/>
</permission-set>
<permission-set name="default-permissions">
<permission class-name="org.wildfly.extension.batch.jberet.deployment.BatchPermission" module="org.wildfly.extension.batch.jberet" target-name="*"/>
<permission class-name="org.wildfly.transaction.client.RemoteTransactionPermission" module="org.wildfly.transaction.client"/>
<permission class-name="org.jboss.ejb.client.RemoteEJBPermission" module="org.jboss.ejb-client"/>
</permission-set>
</permission-sets>
<http>
<http-authentication-factory name="management-http-authentication" security-domain="ManagementDomain" http-server-mechanism-factory="global">
<mechanism-configuration>
<mechanism mechanism-name="DIGEST">
<mechanism-realm realm-name="ManagementRealm"/>
</mechanism>
</mechanism-configuration>
</http-authentication-factory>
<provider-http-server-mechanism-factory name="global"/>
</http>
<sasl>
<sasl-authentication-factory name="application-sasl-authentication" sasl-server-factory="configured" security-domain="ApplicationDomain">
<mechanism-configuration>
<mechanism mechanism-name="JBOSS-LOCAL-USER" realm-mapper="local"/>
<mechanism mechanism-name="DIGEST-MD5">
<mechanism-realm realm-name="ApplicationRealm"/>
</mechanism>
</mechanism-configuration>
</sasl-authentication-factory>
<sasl-authentication-factory name="management-sasl-authentication" sasl-server-factory="configured" security-domain="ManagementDomain">
<mechanism-configuration>
<mechanism mechanism-name="JBOSS-LOCAL-USER" realm-mapper="local"/>
<mechanism mechanism-name="DIGEST-MD5">
<mechanism-realm realm-name="ManagementRealm"/>
</mechanism>
</mechanism-configuration>
</sasl-authentication-factory>
<configurable-sasl-server-factory name="configured" sasl-server-factory="elytron">
<properties>
<property name="wildfly.sasl.local-user.default-user" value="$local"/>
</properties>
</configurable-sasl-server-factory>
<mechanism-provider-filtering-sasl-server-factory name="elytron" sasl-server-factory="global">
<filters>
<filter provider-name="WildFlyElytron"/>
</filters>
</mechanism-provider-filtering-sasl-server-factory>
<provider-sasl-server-factory name="global"/>
</sasl>
</subsystem>
<subsystem xmlns="urn:jboss:domain:infinispan:7.0">
<cache-container name="server" default-cache="default" module="org.wildfly.clustering.server">
<local-cache name="default">
<transaction mode="BATCH"/>
</local-cache>
</cache-container>
<cache-container name="web" default-cache="passivation" module="org.wildfly.clustering.web.infinispan">
<local-cache name="passivation">
<locking isolation="REPEATABLE_READ"/>
<transaction mode="BATCH"/>
<file-store passivation="true" purge="false"/>
</local-cache>
</cache-container>
<cache-container name="ejb" aliases="sfsb" default-cache="passivation" module="org.wildfly.clustering.ejb.infinispan">
<local-cache name="passivation">
<locking isolation="REPEATABLE_READ"/>
<transaction mode="BATCH"/>
<file-store passivation="true" purge="false"/>
</local-cache>
</cache-container>
<cache-container name="hibernate" module="org.infinispan.hibernate-cache">
<local-cache name="entity">
<transaction mode="NON_XA"/>
<object-memory size="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="local-query">
<object-memory size="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="timestamps"/>
</cache-container>
</subsystem>
<subsystem xmlns="urn:jboss:domain:io:3.0">
<worker name="default"/>
<buffer-pool name="default"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jaxrs:1.0"/>
<subsystem xmlns="urn:jboss:domain:jca:5.0">
<archive-validation enabled="true" fail-on-error="true" fail-on-warn="false"/>
<bean-validation enabled="true"/>
<default-workmanager>
<short-running-threads>
<core-threads count="50"/>
<queue-length count="50"/>
<max-threads count="50"/>
<keepalive-time time="10" unit="seconds"/>
</short-running-threads>
<long-running-threads>
<core-threads count="50"/>
<queue-length count="50"/>
<max-threads count="50"/>
<keepalive-time time="10" unit="seconds"/>
</long-running-threads>
</default-workmanager>
<cached-connection-manager/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jdr:1.0"/>
<subsystem xmlns="urn:jboss:domain:jmx:1.3">
<expose-resolved-model/>
<expose-expression-model/>
<remoting-connector/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jpa:1.1">
<jpa default-datasource="" default-extended-persistence-inheritance="DEEP"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:jsf:1.1"/>
<subsystem xmlns="urn:jboss:domain:mail:3.0">
<mail-session name="default" jndi-name="java:jboss/mail/Default">
<smtp-server outbound-socket-binding-ref="mail-smtp"/>
</mail-session>
</subsystem>
<subsystem xmlns="urn:wildfly:microprofile-config-smallrye:1.0"/>
<subsystem xmlns="urn:wildfly:microprofile-health-smallrye:1.0" security-enabled="false"/>
<subsystem xmlns="urn:wildfly:microprofile-opentracing-smallrye:1.0"/>
<subsystem xmlns="urn:jboss:domain:naming:2.0">
<remote-naming/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:pojo:1.0"/>
<subsystem xmlns="urn:jboss:domain:remoting:4.0">
<http-connector name="http-remoting-connector" connector-ref="default" security-realm="ApplicationRealm"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:request-controller:1.0"/>
<subsystem xmlns="urn:jboss:domain:resource-adapters:5.0"/>
<subsystem xmlns="urn:jboss:domain:sar:1.0"/>
<subsystem xmlns="urn:jboss:domain:security:2.0">
<security-domains>
<security-domain name="other" cache-type="default">
<authentication>
<login-module code="Remoting" flag="optional">
<module-option name="password-stacking" value="useFirstPass"/>
</login-module>
<login-module code="RealmDirect" flag="required">
<module-option name="password-stacking" value="useFirstPass"/>
</login-module>
</authentication>
</security-domain>
<security-domain name="jboss-web-policy" cache-type="default">
<authorization>
<policy-module code="Delegating" flag="required"/>
</authorization>
</security-domain>
<security-domain name="jaspitest" cache-type="default">
<authentication-jaspi>
<login-module-stack name="dummy">
<login-module code="Dummy" flag="optional"/>
</login-module-stack>
<auth-module code="Dummy"/>
</authentication-jaspi>
</security-domain>
<security-domain name="jboss-ejb-policy" cache-type="default">
<authorization>
<policy-module code="Delegating" flag="required"/>
</authorization>
</security-domain>
<security-domain name="imixsrealm" cache-type="default">
<authentication>
<login-module name="imixsrealm" code="Database" flag="required">
<module-option name="dsJndiName" value="java:/jdbc/workflow"/>
<module-option name="hashAlgorithm" value="SHA-256"/>
<module-option name="hashEncoding" value="hex"/>
<module-option name="principalsQuery" value="select PASSWORD from USERID where ID=?"/>
<module-option name="rolesQuery" value="select GROUP_ID,'Roles' from USERID_USERGROUP where ID=?"/>
<module-option name="unauthenticatedIdentity" value="anonymous"/>
</login-module>
<login-module code="RoleMapping" flag="required">
<module-option name="rolesProperties" value="file:${jboss.server.config.dir}/imixsrealm.properties"/>
<module-option name="replaceRole" value="false"/>
</login-module>
</authentication>
</security-domain>
</security-domains>
</subsystem>
<subsystem xmlns="urn:jboss:domain:security-manager:1.0">
<deployment-permissions>
<maximum-set>
<permission class="java.security.AllPermission"/>
</maximum-set>
</deployment-permissions>
</subsystem>
<subsystem xmlns="urn:jboss:domain:transactions:5.0">
<core-environment node-identifier="${jboss.tx.node.id:1}">
<process-id>
<uuid/>
</process-id>
</core-environment>
<recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn-status-manager"/>
<object-store path="tx-object-store" relative-to="jboss.server.data.dir"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:undertow:7.0" default-server="default-server" default-virtual-host="default-host" default-servlet-container="default" default-security-domain="other">
<buffer-cache name="default"/>
<server name="default-server">
<http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/>
<https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="true"/>
<host name="default-host" alias="localhost">
<location name="/" handler="welcome-content"/>
<http-invoker security-realm="ApplicationRealm"/>
</host>
</server>
<servlet-container name="default">
<jsp-config/>
<websockets/>
</servlet-container>
<handlers>
<file name="welcome-content" path="${jboss.home.dir}/welcome-content"/>
</handlers>
</subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:2.0">
<wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl-host>
<endpoint-config name="Standard-Endpoint-Config"/>
<endpoint-config name="Recording-Endpoint-Config">
<pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM">
<handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler"/>
</pre-handler-chain>
</endpoint-config>
<client-config name="Standard-Client-Config"/>
</subsystem>
<subsystem xmlns="urn:jboss:domain:weld:4.0"/>
</profile>
<interfaces>
<interface name="management">
<inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
</interface>
<interface name="public">
<inet-address value="${jboss.bind.address:127.0.0.1}"/>
</interface>
</interfaces>
<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
<socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
<socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9993}"/>
<socket-binding name="ajp" port="${jboss.ajp.port:8009}"/>
<socket-binding name="http" port="${jboss.http.port:8080}"/>
<socket-binding name="https" port="${jboss.https.port:8443}"/>
<socket-binding name="txn-recovery-environment" port="4712"/>
<socket-binding name="txn-status-manager" port="4713"/>
<outbound-socket-binding name="mail-smtp">
<remote-destination host="localhost" port="25"/>
</outbound-socket-binding>
</socket-binding-group>
hello sir, u can have look on standalone.xml
It seems there is a problem with your mysql server and the JDBC driver you used. You should take care of the following error message in your server log:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=DEFAULT' at line 1
See here: https://bugs.mysql.com/bug.php?id=66659 https://stackoverflow.com/questions/15669270/option-sql-select-limit-default
Better you use an up-to-date driver like version 8.0.15 ?
Sir , should I upgrade mysql version as well as the connector jar ???
Another problem in your standalone.xml file is the security realm. You have no user database. So use the file realm instead as mentioned in the example. But look at this later when you fixed the database problem.
Sir , should I upgrade mysql version as well as the connector jar ???
take care about your database version and the jdbc driver version. This must match.
okay sir , is there anything I need to configure in my jboss?? so far I have followed this https://www.imixs.org/marty/install/wildfly.html
no, just take care about driver versions. Use the latest one. The documentation is just an example
hello sir , application is deployed successfully. the correct version of jdbc jar was missing.. NOw I can see tables in my database ...how I proceed further sir???
Thank you sir
thats good to hear! replace the security realm configuration from database to filerealm. That's it.
You will find an example configuration in the folder src/docker/configuration Yes we need to update the documentation too ;-)
<security-domain name="imixsrealm">
<authentication>
<login-module code="UsersRoles" flag="required">
<module-option name="usersProperties" value="${jboss.server.config.dir}/sampleapp-users.properties"/>
<module-option name="rolesProperties" value="${jboss.server.config.dir}/sampleapp-roles.properties"/>
</login-module>
<login-module code="RoleMapping" flag="required">
<module-option name="rolesProperties" value="file:${jboss.server.config.dir}/imixsrealm.properties"/>
<module-option name="replaceRole" value="false"/>
</login-module>
</authentication>
</security-domain>
sir do i need to change in jboss standalone.xml or in imixs-jsf-example
sir I want to run this application through database not through file system.. for that What I need to change??
The application runs on your database. It is just the question of the security realm. You can configure any kind of security in jobss (e.b. database, ldap, filebased). I just mention to use the filebased relam for simplicity.
Thank you sir
sir when I am adding this security domain I am getting error in starting the server .. also the war file is uploaded but not exploaded ..so where would be its default landing page??
when I am writing localhost:8080/imixs-jsf-example-4.2.0 . its saying NOT FOUND
Take a look into your jboss-web.xml file (located in web-inf). The application points maybe to the root /
should we close this issue?
hello Sir sorry for late reply sir Still I am not able to access the login screen though the application is deployed successfully..How can I go to application home page??
this is my server log
12:03:31,135 INFO [org.jboss.modules] (main) JBoss Modules version 1.8.6.Final-redhat-00001 12:03:33,775 INFO [org.jboss.msc] (main) JBoss MSC version 1.4.5.Final-redhat-00001 12:03:33,807 INFO [org.jboss.threads] (main) JBoss Threads version 2.3.2.Final-redhat-1 12:03:34,400 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: JBoss EAP 7.2.0.GA (WildFly Core 6.0.11.Final-re dhat-00001) starting 12:03:37,324 INFO [org.wildfly.security] (ServerService Thread Pool -- 27) ELY00001: WildFly Elytron version 1.6.1.Fina l-redhat-00001 12:03:39,293 INFO [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'secu rity-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operat ion to learn more about the deprecation. 12:03:39,340 INFO [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 16) WFLYCTL0028: Attrib ute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' is depr ecated, and may be removed in a future version. See the attribute description in the output of the read-resource-descrip tion operation to learn more about the deprecation. 12:03:40,012 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using so cket-binding (management-http) 12:03:40,043 INFO [org.xnio] (MSC service thread 1-3) XNIO version 3.6.5.Final-redhat-00001 12:03:40,058 INFO [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.6.5.Final-redhat-00001 12:03:40,371 WARN [org.jboss.as.txn] (ServerService Thread Pool -- 68) WFLYTX0013: The node-identifier attribute on the /subsystem=transactions is set to the default value. This is a danger for environments running multiple servers. Please make sure the attribute value is unique. 12:03:40,371 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 55) WFLYJSF0007: Activated the following JSF Impleme ntations: [main] 12:03:40,371 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 48) WFLYCLINF0001: Activating Infi nispan subsystem. 12:03:40,387 INFO [org.jboss.as.webservices] (ServerService Thread Pool -- 70) WFLYWS0002: Activating WebServices Exten sion 12:03:40,418 INFO [org.jboss.as.security] (ServerService Thread Pool -- 66) WFLYSEC0002: Activating Security Subsystem 12:03:40,433 INFO [org.wildfly.extension.microprofile.config.smallrye._private] (ServerService Thread Pool -- 57) WFLYC ONF0001: Activating WildFly MicroProfile Config Subsystem 12:03:40,418 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 60) WFLYNAM0001: Activating Naming Subsystem 12:03:40,465 INFO [org.wildfly.extension.microprofile.health.smallrye] (ServerService Thread Pool -- 58) WFLYHEALTH0001 : Activating Eclipse MicroProfile Health Subsystem 12:03:40,480 INFO [org.jboss.as.security] (MSC service thread 1-8) WFLYSEC0001: Current PicketBox version=5.0.3.Final-r edhat-3 12:03:40,480 INFO [org.wildfly.extension.microprofile.opentracing] (ServerService Thread Pool -- 59) WFLYTRACEXT0001: A ctivating MicroProfile OpenTracing Subsystem 12:03:40,543 INFO [org.jboss.as.jaxrs] (ServerService Thread Pool -- 50) WFLYRS0016: RESTEasy version 3.6.1.SP2-redhat- 00001 12:03:40,558 INFO [org.jboss.as.connector] (MSC service thread 1-8) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJa camar 1.4.11.Final-redhat-00001) 12:03:40,746 INFO [org.jboss.as.mail.extension] (MSC service thread 1-4) WFLYMAIL0002: Unbound mail session [java:jboss /mail/Default] 12:03:40,746 INFO [org.jboss.as.mail.extension] (MSC service thread 1-5) WFLYMAIL0002: Unbound mail session [java:/mail /org.imixs.workflow.mail] 12:03:40,762 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0003: Undertow 2.0.15.Final-redhat-00 001 starting 12:03:41,152 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 41) WFLYJCA0004: Deploy ing JDBC-compliant driver class org.h2.Driver (version 1.4) 12:03:41,168 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-4) WFLYJCA0018: Started Driver service with driver-name = h2 12:03:41,277 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) WFLYJCA0010: Unbound data so urce [java:/jdbc/workflow] 12:03:41,277 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-6) WFLYJCA0010: Unbound data so urce [java:jboss/datasources/ExampleDS] 12:03:41,386 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 49) WFLYIO001: Worker 'default' has auto-con figured to 8 core threads with 64 task threads based on your 4 available processors 12:03:41,402 INFO [org.jboss.as.naming] (MSC service thread 1-5) WFLYNAM0003: Starting Naming Service 12:03:41,402 INFO [org.jboss.as.mail.extension] (MSC service thread 1-5) WFLYMAIL0001: Bound mail session [java:/mail/o rg.imixs.workflow.mail] 12:03:41,402 INFO [org.jboss.as.mail.extension] (MSC service thread 1-5) WFLYMAIL0001: Bound mail session [java:jboss/m ail/Default] 12:03:41,433 INFO [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.8.Final-redhat-1 12:03:41,730 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 69) WFLYUT0014: Creating file handler for path 'C:\Users\PRATIK\EAP-7.2.0/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]'] 12:03:41,918 INFO [org.jboss.as.ejb3] (MSC service thread 1-4) WFLYEJB0493: EJB subsystem suspension complete 12:03:41,918 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0012: Started server default-server. 12:03:41,918 INFO [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0018: Host default-host starting 12:03:42,043 INFO [org.jboss.as.ejb3] (MSC service thread 1-3) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 16 (per class), which is derived from the number of CPUs on this host. 12:03:42,043 INFO [org.jboss.as.ejb3] (MSC service thread 1-4) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 64 (per class), which is derived from thread worker pool sizing. 12:03:42,074 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) WFLYJCA0001: Bound data sour ce [java:jboss/datasources/ExampleDS] 12:03:42,261 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080 12:03:42,558 INFO [org.jboss.as.patching] (MSC service thread 1-4) WFLYPAT0050: JBoss EAP cumulative patch ID is: base, one-off patches include: none 12:03:42,590 WARN [org.jboss.as.domain.management.security] (MSC service thread 1-4) WFLYDM0111: Keystore C:\Users\PRAT IK\EAP-7.2.0\standalone\configuration\application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost 12:03:42,605 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-2) WFLYDS0013: Started FileSystemDeplo ymentService for directory C:\Users\PRATIK\EAP-7.2.0\standalone\deployments 12:03:42,605 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "imixs- jsf-example-4.2.0.war" (runtime-name: "imixs-jsf-example-4.2.0.war") 12:03:42,605 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "mysql- connector-java-5.1.25.jar" (runtime-name: "mysql-connector-java-5.1.25.jar") 12:03:44,777 INFO [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0006: Undertow HTTPS listener https l istening on 127.0.0.1:8443 12:03:44,949 INFO [org.jboss.ws.common.management] (MSC service thread 1-2) JBWS022052: Starting JBossWS 5.2.4.Final-re dhat-00001 (Apache CXF 3.2.5.redhat-00001) 12:03:45,464 INFO [org.jboss.as.jpa] (MSC service thread 1-2) WFLYJPA0002: Read persistence.xml for org.imixs.workflow. jpa 12:03:45,886 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-8) WFLYJCA0005: Deploying non-JDBC-comp liant driver class com.mysql.jdbc.Driver (version 5.1) 12:03:45,902 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-7) WFLYJCA0018: Started Driver service with driver-name = mysql-connector-java-5.1.25.jar 12:03:45,902 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-7) WFLYJCA0001: Bound data sour ce [java:/jdbc/workflow] 12:03:45,917 INFO [org.jboss.as.jpa] (ServerService Thread Pool -- 72) WFLYJPA0003: Starting Persistence Unit Service ' imixs-jsf-example-4.2.0.war#org.imixs.workflow.jpa' 12:03:46,355 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.Entity] is set to [PROPERTY]. 12:03:46,370 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getCalendarItems] is being defaulted to: class org.imixs.workflow.jee.jp a.CalendarItem. 12:03:46,370 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getTextItems] is being defaulted to: class org.imixs.workflow.jee.jpa.Te xtItem. 12:03:46,370 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getDoubleItems] is being defaulted to: class org.imixs.workflow.jee.jpa. DoubleItem. 12:03:46,370 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getIntegerItems] is being defaulted to: class org.imixs.workflow.jee.jpa .IntegerItem. 12:03:46,386 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getReadAccessList] is being defaulted to: class org.imixs.workflow.jee.j pa.ReadAccess. 12:03:46,386 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getWriteAccessList] is being defaulted to: class org.imixs.workflow.jee. jpa.WriteAccess. 12:03:46,386 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.EntityIndex] is set to [PROPERTY]. 12:03:46,386 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.TextItem] is set to [FIELD]. 12:03:46,386 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.WriteAccess] is set to [FIELD]. 12:03:46,386 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.IntegerItem] is set to [FIELD]. 12:03:46,386 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.engine.jpa.Document] is set to [PROPERTY]. 12:03:46,386 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.DoubleItem] is set to [FIELD]. 12:03:46,402 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.ReadAccess] is set to [FIELD]. 12:03:46,402 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.CalendarItem] is set to [FIELD]. 12:03:46,402 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.Entity] is being defaulted to: Entity. 12:03:46,402 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.Entity] is being defaulted to: ENTITY. 12:03:46,417 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Data] is being defaulted to: DATA. 12:03:46,417 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Created] is being defaulted to: CREATED. 12:03:46,417 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Modified] is being defaulted to: MODIFIED. 12:03:46,417 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Id] is being defaulted to: ID. 12:03:46,417 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Type] is being defaulted to: TYPE. 12:03:46,417 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Version] is being defaulted to: VERSION. 12:03:46,417 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.EntityIndex] is being defaulted to: EntityIndex. 12:03:46,417 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.EntityIndex] is being defaulted to: ENTITYINDEX. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Name] is being defaulted to: NAME. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Typ] is being defaulted to: TYP. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.TextItem] is being defaulted to: TextItem. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.TextItem] is being defaulted to: TEXTITEM. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mName] is being defaulted to: ITEMNAME. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mValue] is being defaulted to: ITEMVALUE. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.WriteAccess] is being defaulted to: WriteAccess. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.WriteAccess] is being defaulted to: WRITEACCESS. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [val ue] is being defaulted to: VALUE. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.IntegerItem] is being defaulted to: IntegerItem. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.IntegerItem] is being defaulted to: INTEGERITEM. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mName] is being defaulted to: ITEMNAME. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mValue] is being defaulted to: ITEMVALUE. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.engine.jpa.Document] is being defaulted to: Document. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.engine.jpa.Document] is being defaulted to: DOCUMENT. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Data] is being defaulted to: DATA. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Created] is being defaulted to: CREATED. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Modified] is being defaulted to: MODIFIED. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Id] is being defaulted to: ID. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Type] is being defaulted to: TYPE. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Version] is being defaulted to: VERSION. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.DoubleItem] is being defaulted to: DoubleItem. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.DoubleItem] is being defaulted to: DOUBLEITEM. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mName] is being defaulted to: ITEMNAME. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mValue] is being defaulted to: ITEMVALUE. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.ReadAccess] is being defaulted to: ReadAccess. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.ReadAccess] is being defaulted to: READACCESS. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 12:03:46,433 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [val ue] is being defaulted to: VALUE. 12:03:46,449 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.CalendarItem] is being defaulted to: CalendarItem. 12:03:46,449 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.CalendarItem] is being defaulted to: CALENDARITEM. 12:03:46,449 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mName] is being defaulted to: ITEMNAME. 12:03:46,449 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mValue] is being defaulted to: ITEMVALUE. 12:03:46,449 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 12:03:46,464 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getTextItems] is being defaulted to: ENTITY_TEXTITEM. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getTextItems] is being defaulted to: ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getTextItems] is being defaulted to: Entity_ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getTextItems] is being defaulted to: ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getTextItems] is being defaulted to: textItems_ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getDoubleItems] is being defaulted to: ENTITY_DOUBLEITEM. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getDoubleItems] is being defaulted to: ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getDoubleItems] is being defaulted to: Entity_ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getDoubleItems] is being defaulted to: ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getDoubleItems] is being defaulted to: doubleItems_ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getWriteAccessList] is being defaulted to: ENTITY_WRITEACCESS. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getWriteAccessList] is being defaulted to: ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getWriteAccessList] is being defaulted to: Entity_ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getWriteAccessList] is being defaulted to: ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getWriteAccessList] is being defaulted to: writeAccessList_ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getIntegerItems] is being defaulted to: ENTITY_INTEGERITEM. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getIntegerItems] is being defaulted to: ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getIntegerItems] is being defaulted to: Entity_ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getIntegerItems] is being defaulted to: ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getIntegerItems] is being defaulted to: integerItems_ID. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getCalendarItems] is being defaulted to: ENTITY_CALENDARITEM. 12:03:46,480 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getCalendarItems] is being defaulted to: ID. 12:03:46,495 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getCalendarItems] is being defaulted to: Entity_ID. 12:03:46,495 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getCalendarItems] is being defaulted to: ID. 12:03:46,495 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getCalendarItems] is being defaulted to: calendarItems_ID. 12:03:46,495 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getReadAccessList] is being defaulted to: ENTITY_READACCESS. 12:03:46,495 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getReadAccessList] is being defaulted to: ID. 12:03:46,495 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getReadAccessList] is being defaulted to: Entity_ID. 12:03:46,495 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getReadAccessList] is being defaulted to: ID. 12:03:46,495 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getReadAccessList] is being defaulted to: readAccessList_ID. 12:03:46,511 INFO [org.eclipse.persistence.weaver] (ServerService Thread Pool -- 72) Class org.imixs.workflow.jee.jpa.E ntity could not be weaved for change tracking as it is not supported by its mappings. 12:03:46,683 INFO [org.hibernate.validator.internal.util.Version] (ServerService Thread Pool -- 72) HV000001: Hibernate Validator 6.0.14.Final-redhat-00001 12:03:46,886 INFO [org.eclipse.persistence] (ServerService Thread Pool -- 72) EclipseLink, version: Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a 12:03:47,339 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) connecting(DatabaseLogin( platform=>MySQLPlatform user name=> "" connector=>JNDIConnector datasource name=>null )) 12:03:47,339 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) Connected: jdbc:mysql://localh ost:3306/imixs User: root@localhost Database: MySQL Version: 5.7.25-log Driver: MySQL Connector Java Version: mysql-connector-java-5.1.25 ( Revision: ${bzr.revision-id} ) 12:03:47,339 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) connecting(DatabaseLogin( platform=>MySQLPlatform user name=> "" connector=>JNDIConnector datasource name=>null )) 12:03:47,355 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) Connected: jdbc:mysql://localh ost:3306/imixs User: root@localhost Database: MySQL Version: 5.7.25-log Driver: MySQL Connector Java Version: mysql-connector-java-5.1.25 ( Revision: ${bzr.revision-id} ) 12:03:47,417 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) /vfs:/C:/Users/PRATIK/EAP-7.2. 0/bin/content/imixs-jsf-example-4.2.0.war/WEB-INF/classes/_org.imixs.workflow.jpa login successful 12:03:47,699 INFO [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-4) ISPN000128: Infinispan ve rsion: Infinispan 'Estrella Galicia' 9.3.3.Final-redhat-00001 12:03:47,730 INFO [org.jboss.weld.deployer] (MSC service thread 1-1) WFLYWELD0003: Processing weld deployment imixs-jsf -example-4.2.0.war 12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'JobHandlerUpgradeWorkitems' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems!org.imixs.workflow.engine.adminp.JobHandlerUpgrad
eWorkitems java:app/imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems!org.imixs.workflow.engine.adminp.JobHandlerUpgradeWo rkitems java:module/JobHandlerUpgradeWorkitems!org.imixs.workflow.engine.adminp.JobHandlerUpgradeWorkitems ejb:imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems!org.imixs.workflow.engine.adminp.JobHandlerUpgradeWorkite ms java:global/imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems java:app/imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems java:module/JobHandlerUpgradeWorkitems
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ModelRestServiceV3' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/ModelRestServiceV3!org.imixs.workflow.jaxrs.v3.ModelRestServiceV3
java:app/imixs-jsf-example-4.2.0/ModelRestServiceV3!org.imixs.workflow.jaxrs.v3.ModelRestServiceV3
java:module/ModelRestServiceV3!org.imixs.workflow.jaxrs.v3.ModelRestServiceV3
ejb:imixs-jsf-example-4.2.0/ModelRestServiceV3!org.imixs.workflow.jaxrs.v3.ModelRestServiceV3
java:global/imixs-jsf-example-4.2.0/ModelRestServiceV3
java:app/imixs-jsf-example-4.2.0/ModelRestServiceV3
java:module/ModelRestServiceV3
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/WorkflowRestService!org.imixs.workflow.jaxrs.WorkflowRestService
java:app/imixs-jsf-example-4.2.0/WorkflowRestService!org.imixs.workflow.jaxrs.WorkflowRestService
java:module/WorkflowRestService!org.imixs.workflow.jaxrs.WorkflowRestService
ejb:imixs-jsf-example-4.2.0/WorkflowRestService!org.imixs.workflow.jaxrs.WorkflowRestService
java:global/imixs-jsf-example-4.2.0/WorkflowRestService
java:app/imixs-jsf-example-4.2.0/WorkflowRestService
java:module/WorkflowRestService
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'SchedulerService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/SchedulerService!org.imixs.workflow.engine.scheduler.SchedulerService
java:app/imixs-jsf-example-4.2.0/SchedulerService!org.imixs.workflow.engine.scheduler.SchedulerService
java:module/SchedulerService!org.imixs.workflow.engine.scheduler.SchedulerService
ejb:imixs-jsf-example-4.2.0/SchedulerService!org.imixs.workflow.engine.scheduler.SchedulerService
java:global/imixs-jsf-example-4.2.0/SchedulerService
java:app/imixs-jsf-example-4.2.0/SchedulerService
java:module/SchedulerService
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'JobHandlerMigration3X' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/JobHandlerMigration3X!org.imixs.workflow.engine.adminp.JobHandlerMigration3X
java:app/imixs-jsf-example-4.2.0/JobHandlerMigration3X!org.imixs.workflow.engine.adminp.JobHandlerMigration3X
java:module/JobHandlerMigration3X!org.imixs.workflow.engine.adminp.JobHandlerMigration3X
ejb:imixs-jsf-example-4.2.0/JobHandlerMigration3X!org.imixs.workflow.engine.adminp.JobHandlerMigration3X
java:global/imixs-jsf-example-4.2.0/JobHandlerMigration3X
java:app/imixs-jsf-example-4.2.0/JobHandlerMigration3X
java:module/JobHandlerMigration3X
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'EntityRestServiceV3' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/EntityRestServiceV3!org.imixs.workflow.jaxrs.v3.EntityRestServiceV3
java:app/imixs-jsf-example-4.2.0/EntityRestServiceV3!org.imixs.workflow.jaxrs.v3.EntityRestServiceV3
java:module/EntityRestServiceV3!org.imixs.workflow.jaxrs.v3.EntityRestServiceV3
ejb:imixs-jsf-example-4.2.0/EntityRestServiceV3!org.imixs.workflow.jaxrs.v3.EntityRestServiceV3
java:global/imixs-jsf-example-4.2.0/EntityRestServiceV3
java:app/imixs-jsf-example-4.2.0/EntityRestServiceV3
java:module/EntityRestServiceV3
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowSchedulerService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/WorkflowSchedulerService!org.imixs.workflow.engine.WorkflowSchedulerService
java:app/imixs-jsf-example-4.2.0/WorkflowSchedulerService!org.imixs.workflow.engine.WorkflowSchedulerService
java:module/WorkflowSchedulerService!org.imixs.workflow.engine.WorkflowSchedulerService
ejb:imixs-jsf-example-4.2.0/WorkflowSchedulerService!org.imixs.workflow.engine.WorkflowSchedulerService
java:global/imixs-jsf-example-4.2.0/WorkflowSchedulerService
java:app/imixs-jsf-example-4.2.0/WorkflowSchedulerService
java:module/WorkflowSchedulerService
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'AdminPRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/AdminPRestServiceV40!org.imixs.workflow.jaxrs.v40.AdminPRestServiceV40
java:app/imixs-jsf-example-4.2.0/AdminPRestServiceV40!org.imixs.workflow.jaxrs.v40.AdminPRestServiceV40
java:module/AdminPRestServiceV40!org.imixs.workflow.jaxrs.v40.AdminPRestServiceV40
ejb:imixs-jsf-example-4.2.0/AdminPRestServiceV40!org.imixs.workflow.jaxrs.v40.AdminPRestServiceV40
java:global/imixs-jsf-example-4.2.0/AdminPRestServiceV40
java:app/imixs-jsf-example-4.2.0/AdminPRestServiceV40
java:module/AdminPRestServiceV40
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'AdminPRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/AdminPRestService!org.imixs.workflow.jaxrs.AdminPRestService
java:app/imixs-jsf-example-4.2.0/AdminPRestService!org.imixs.workflow.jaxrs.AdminPRestService
java:module/AdminPRestService!org.imixs.workflow.jaxrs.AdminPRestService
ejb:imixs-jsf-example-4.2.0/AdminPRestService!org.imixs.workflow.jaxrs.AdminPRestService
java:global/imixs-jsf-example-4.2.0/AdminPRestService
java:app/imixs-jsf-example-4.2.0/AdminPRestService
java:module/AdminPRestService
12:03:47,917 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'LoadRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/LoadRestService!org.imixs.application.rest.LoadRestService
java:app/imixs-jsf-example-4.2.0/LoadRestService!org.imixs.application.rest.LoadRestService
java:module/LoadRestService!org.imixs.application.rest.LoadRestService
ejb:imixs-jsf-example-4.2.0/LoadRestService!org.imixs.application.rest.LoadRestService
java:global/imixs-jsf-example-4.2.0/LoadRestService
java:app/imixs-jsf-example-4.2.0/LoadRestService
java:module/LoadRestService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'JobHandlerRenameUser' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/JobHandlerRenameUser!org.imixs.workflow.engine.adminp.JobHandlerRenameUser
java:app/imixs-jsf-example-4.2.0/JobHandlerRenameUser!org.imixs.workflow.engine.adminp.JobHandlerRenameUser
java:module/JobHandlerRenameUser!org.imixs.workflow.engine.adminp.JobHandlerRenameUser
ejb:imixs-jsf-example-4.2.0/JobHandlerRenameUser!org.imixs.workflow.engine.adminp.JobHandlerRenameUser
java:global/imixs-jsf-example-4.2.0/JobHandlerRenameUser
java:app/imixs-jsf-example-4.2.0/JobHandlerRenameUser
java:module/JobHandlerRenameUser
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'DocumentRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/DocumentRestService!org.imixs.workflow.jaxrs.DocumentRestService
java:app/imixs-jsf-example-4.2.0/DocumentRestService!org.imixs.workflow.jaxrs.DocumentRestService
java:module/DocumentRestService!org.imixs.workflow.jaxrs.DocumentRestService
ejb:imixs-jsf-example-4.2.0/DocumentRestService!org.imixs.workflow.jaxrs.DocumentRestService
java:global/imixs-jsf-example-4.2.0/DocumentRestService
java:app/imixs-jsf-example-4.2.0/DocumentRestService
java:module/DocumentRestService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/WorkflowService!org.imixs.workflow.engine.WorkflowService
java:app/imixs-jsf-example-4.2.0/WorkflowService!org.imixs.workflow.engine.WorkflowService
java:module/WorkflowService!org.imixs.workflow.engine.WorkflowService
ejb:imixs-jsf-example-4.2.0/WorkflowService!org.imixs.workflow.engine.WorkflowService
java:global/imixs-jsf-example-4.2.0/WorkflowService
java:app/imixs-jsf-example-4.2.0/WorkflowService
java:module/WorkflowService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'TextPropertyValueAdapter' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/TextPropertyValueAdapter!org.imixs.workflow.engine.TextPropertyValueAdapter
java:app/imixs-jsf-example-4.2.0/TextPropertyValueAdapter!org.imixs.workflow.engine.TextPropertyValueAdapter
java:module/TextPropertyValueAdapter!org.imixs.workflow.engine.TextPropertyValueAdapter
ejb:imixs-jsf-example-4.2.0/TextPropertyValueAdapter!org.imixs.workflow.engine.TextPropertyValueAdapter
java:global/imixs-jsf-example-4.2.0/TextPropertyValueAdapter
java:app/imixs-jsf-example-4.2.0/TextPropertyValueAdapter
java:module/TextPropertyValueAdapter
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowRestServiceV3' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/WorkflowRestServiceV3!org.imixs.workflow.jaxrs.v3.WorkflowRestServiceV3
java:app/imixs-jsf-example-4.2.0/WorkflowRestServiceV3!org.imixs.workflow.jaxrs.v3.WorkflowRestServiceV3
java:module/WorkflowRestServiceV3!org.imixs.workflow.jaxrs.v3.WorkflowRestServiceV3
ejb:imixs-jsf-example-4.2.0/WorkflowRestServiceV3!org.imixs.workflow.jaxrs.v3.WorkflowRestServiceV3
java:global/imixs-jsf-example-4.2.0/WorkflowRestServiceV3
java:app/imixs-jsf-example-4.2.0/WorkflowRestServiceV3
java:module/WorkflowRestServiceV3
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'AdminPService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/AdminPService!org.imixs.workflow.engine.adminp.AdminPService
java:app/imixs-jsf-example-4.2.0/AdminPService!org.imixs.workflow.engine.adminp.AdminPService
java:module/AdminPService!org.imixs.workflow.engine.adminp.AdminPService
ejb:imixs-jsf-example-4.2.0/AdminPService!org.imixs.workflow.engine.adminp.AdminPService
java:global/imixs-jsf-example-4.2.0/AdminPService
java:app/imixs-jsf-example-4.2.0/AdminPService
java:module/AdminPService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'EntityService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/EntityService!org.imixs.workflow.jee.ejb.EntityServiceRemote
java:app/imixs-jsf-example-4.2.0/EntityService!org.imixs.workflow.jee.ejb.EntityServiceRemote
java:module/EntityService!org.imixs.workflow.jee.ejb.EntityServiceRemote
java:jboss/exported/imixs-jsf-example-4.2.0/EntityService!org.imixs.workflow.jee.ejb.EntityServiceRemote
ejb:imixs-jsf-example-4.2.0/EntityService!org.imixs.workflow.jee.ejb.EntityServiceRemote
java:global/imixs-jsf-example-4.2.0/EntityService!org.imixs.workflow.jee.ejb.EntityService
java:app/imixs-jsf-example-4.2.0/EntityService!org.imixs.workflow.jee.ejb.EntityService
java:module/EntityService!org.imixs.workflow.jee.ejb.EntityService
ejb:imixs-jsf-example-4.2.0/EntityService!org.imixs.workflow.jee.ejb.EntityService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'RootRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/RootRestService!org.imixs.workflow.jaxrs.RootRestService
java:app/imixs-jsf-example-4.2.0/RootRestService!org.imixs.workflow.jaxrs.RootRestService
java:module/RootRestService!org.imixs.workflow.jaxrs.RootRestService
ejb:imixs-jsf-example-4.2.0/RootRestService!org.imixs.workflow.jaxrs.RootRestService
java:global/imixs-jsf-example-4.2.0/RootRestService
java:app/imixs-jsf-example-4.2.0/RootRestService
java:module/RootRestService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'JobHandlerRebuildIndex' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/JobHandlerRebuildIndex!org.imixs.workflow.engine.adminp.JobHandlerRebuildInd
ex java:app/imixs-jsf-example-4.2.0/JobHandlerRebuildIndex!org.imixs.workflow.engine.adminp.JobHandlerRebuildIndex java:module/JobHandlerRebuildIndex!org.imixs.workflow.engine.adminp.JobHandlerRebuildIndex ejb:imixs-jsf-example-4.2.0/JobHandlerRebuildIndex!org.imixs.workflow.engine.adminp.JobHandlerRebuildIndex java:global/imixs-jsf-example-4.2.0/JobHandlerRebuildIndex java:app/imixs-jsf-example-4.2.0/JobHandlerRebuildIndex java:module/JobHandlerRebuildIndex
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'RootRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/RootRestServiceV40!org.imixs.workflow.jaxrs.v40.RootRestServiceV40
java:app/imixs-jsf-example-4.2.0/RootRestServiceV40!org.imixs.workflow.jaxrs.v40.RootRestServiceV40
java:module/RootRestServiceV40!org.imixs.workflow.jaxrs.v40.RootRestServiceV40
ejb:imixs-jsf-example-4.2.0/RootRestServiceV40!org.imixs.workflow.jaxrs.v40.RootRestServiceV40
java:global/imixs-jsf-example-4.2.0/RootRestServiceV40
java:app/imixs-jsf-example-4.2.0/RootRestServiceV40
java:module/RootRestServiceV40
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'LuceneSearchService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/LuceneSearchService!org.imixs.workflow.engine.lucene.LuceneSearchService
java:app/imixs-jsf-example-4.2.0/LuceneSearchService!org.imixs.workflow.engine.lucene.LuceneSearchService
java:module/LuceneSearchService!org.imixs.workflow.engine.lucene.LuceneSearchService
ejb:imixs-jsf-example-4.2.0/LuceneSearchService!org.imixs.workflow.engine.lucene.LuceneSearchService
java:global/imixs-jsf-example-4.2.0/LuceneSearchService
java:app/imixs-jsf-example-4.2.0/LuceneSearchService
java:module/LuceneSearchService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'DocumentService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/DocumentService!org.imixs.workflow.engine.DocumentService
java:app/imixs-jsf-example-4.2.0/DocumentService!org.imixs.workflow.engine.DocumentService
java:module/DocumentService!org.imixs.workflow.engine.DocumentService
ejb:imixs-jsf-example-4.2.0/DocumentService!org.imixs.workflow.engine.DocumentService
java:global/imixs-jsf-example-4.2.0/DocumentService
java:app/imixs-jsf-example-4.2.0/DocumentService
java:module/DocumentService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ModelService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/ModelService!org.imixs.workflow.engine.ModelService
java:app/imixs-jsf-example-4.2.0/ModelService!org.imixs.workflow.engine.ModelService
java:module/ModelService!org.imixs.workflow.engine.ModelService
ejb:imixs-jsf-example-4.2.0/ModelService!org.imixs.workflow.engine.ModelService
java:global/imixs-jsf-example-4.2.0/ModelService
java:app/imixs-jsf-example-4.2.0/ModelService
java:module/ModelService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'TextItemValueAdapter' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/TextItemValueAdapter!org.imixs.workflow.engine.TextItemValueAdapter
java:app/imixs-jsf-example-4.2.0/TextItemValueAdapter!org.imixs.workflow.engine.TextItemValueAdapter
java:module/TextItemValueAdapter!org.imixs.workflow.engine.TextItemValueAdapter
ejb:imixs-jsf-example-4.2.0/TextItemValueAdapter!org.imixs.workflow.engine.TextItemValueAdapter
java:global/imixs-jsf-example-4.2.0/TextItemValueAdapter
java:app/imixs-jsf-example-4.2.0/TextItemValueAdapter
java:module/TextItemValueAdapter
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/WorkflowRestServiceV40!org.imixs.workflow.jaxrs.v40.WorkflowRestServiceV40
java:app/imixs-jsf-example-4.2.0/WorkflowRestServiceV40!org.imixs.workflow.jaxrs.v40.WorkflowRestServiceV40
java:module/WorkflowRestServiceV40!org.imixs.workflow.jaxrs.v40.WorkflowRestServiceV40
ejb:imixs-jsf-example-4.2.0/WorkflowRestServiceV40!org.imixs.workflow.jaxrs.v40.WorkflowRestServiceV40
java:global/imixs-jsf-example-4.2.0/WorkflowRestServiceV40
java:app/imixs-jsf-example-4.2.0/WorkflowRestServiceV40
java:module/WorkflowRestServiceV40
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ReportService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/ReportService!org.imixs.workflow.engine.ReportService
java:app/imixs-jsf-example-4.2.0/ReportService!org.imixs.workflow.engine.ReportService
java:module/ReportService!org.imixs.workflow.engine.ReportService
ejb:imixs-jsf-example-4.2.0/ReportService!org.imixs.workflow.engine.ReportService
java:global/imixs-jsf-example-4.2.0/ReportService
java:app/imixs-jsf-example-4.2.0/ReportService
java:module/ReportService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'SchedulerConfigurationService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/SchedulerConfigurationService!org.imixs.workflow.engine.scheduler.SchedulerC
onfigurationService java:app/imixs-jsf-example-4.2.0/SchedulerConfigurationService!org.imixs.workflow.engine.scheduler.SchedulerConf igurationService java:module/SchedulerConfigurationService!org.imixs.workflow.engine.scheduler.SchedulerConfigurationService ejb:imixs-jsf-example-4.2.0/SchedulerConfigurationService!org.imixs.workflow.engine.scheduler.SchedulerConfigura tionService java:global/imixs-jsf-example-4.2.0/SchedulerConfigurationService java:app/imixs-jsf-example-4.2.0/SchedulerConfigurationService java:module/SchedulerConfigurationService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'LuceneUpdateService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/LuceneUpdateService!org.imixs.workflow.engine.lucene.LuceneUpdateService
java:app/imixs-jsf-example-4.2.0/LuceneUpdateService!org.imixs.workflow.engine.lucene.LuceneUpdateService
java:module/LuceneUpdateService!org.imixs.workflow.engine.lucene.LuceneUpdateService
ejb:imixs-jsf-example-4.2.0/LuceneUpdateService!org.imixs.workflow.engine.lucene.LuceneUpdateService
java:global/imixs-jsf-example-4.2.0/LuceneUpdateService
java:app/imixs-jsf-example-4.2.0/LuceneUpdateService
java:module/LuceneUpdateService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'PropertyService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/PropertyService!org.imixs.workflow.engine.PropertyService
java:app/imixs-jsf-example-4.2.0/PropertyService!org.imixs.workflow.engine.PropertyService
java:module/PropertyService!org.imixs.workflow.engine.PropertyService
ejb:imixs-jsf-example-4.2.0/PropertyService!org.imixs.workflow.engine.PropertyService
java:global/imixs-jsf-example-4.2.0/PropertyService
java:app/imixs-jsf-example-4.2.0/PropertyService
java:module/PropertyService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'DocumentRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/DocumentRestServiceV40!org.imixs.workflow.jaxrs.v40.DocumentRestServiceV40
java:app/imixs-jsf-example-4.2.0/DocumentRestServiceV40!org.imixs.workflow.jaxrs.v40.DocumentRestServiceV40
java:module/DocumentRestServiceV40!org.imixs.workflow.jaxrs.v40.DocumentRestServiceV40
ejb:imixs-jsf-example-4.2.0/DocumentRestServiceV40!org.imixs.workflow.jaxrs.v40.DocumentRestServiceV40
java:global/imixs-jsf-example-4.2.0/DocumentRestServiceV40
java:app/imixs-jsf-example-4.2.0/DocumentRestServiceV40
java:module/DocumentRestServiceV40
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ModelRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/ModelRestServiceV40!org.imixs.workflow.jaxrs.v40.ModelRestServiceV40
java:app/imixs-jsf-example-4.2.0/ModelRestServiceV40!org.imixs.workflow.jaxrs.v40.ModelRestServiceV40
java:module/ModelRestServiceV40!org.imixs.workflow.jaxrs.v40.ModelRestServiceV40
ejb:imixs-jsf-example-4.2.0/ModelRestServiceV40!org.imixs.workflow.jaxrs.v40.ModelRestServiceV40
java:global/imixs-jsf-example-4.2.0/ModelRestServiceV40
java:app/imixs-jsf-example-4.2.0/ModelRestServiceV40
java:module/ModelRestServiceV40
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ReportRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/ReportRestServiceV40!org.imixs.workflow.jaxrs.v40.ReportRestServiceV40
java:app/imixs-jsf-example-4.2.0/ReportRestServiceV40!org.imixs.workflow.jaxrs.v40.ReportRestServiceV40
java:module/ReportRestServiceV40!org.imixs.workflow.jaxrs.v40.ReportRestServiceV40
ejb:imixs-jsf-example-4.2.0/ReportRestServiceV40!org.imixs.workflow.jaxrs.v40.ReportRestServiceV40
java:global/imixs-jsf-example-4.2.0/ReportRestServiceV40
java:app/imixs-jsf-example-4.2.0/ReportRestServiceV40
java:module/ReportRestServiceV40
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'SimulationService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/SimulationService!org.imixs.workflow.engine.SimulationService
java:app/imixs-jsf-example-4.2.0/SimulationService!org.imixs.workflow.engine.SimulationService
java:module/SimulationService!org.imixs.workflow.engine.SimulationService
ejb:imixs-jsf-example-4.2.0/SimulationService!org.imixs.workflow.engine.SimulationService
java:global/imixs-jsf-example-4.2.0/SimulationService
java:app/imixs-jsf-example-4.2.0/SimulationService
java:module/SimulationService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ReportRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/ReportRestService!org.imixs.workflow.jaxrs.ReportRestService
java:app/imixs-jsf-example-4.2.0/ReportRestService!org.imixs.workflow.jaxrs.ReportRestService
java:module/ReportRestService!org.imixs.workflow.jaxrs.ReportRestService
ejb:imixs-jsf-example-4.2.0/ReportRestService!org.imixs.workflow.jaxrs.ReportRestService
java:global/imixs-jsf-example-4.2.0/ReportRestService
java:app/imixs-jsf-example-4.2.0/ReportRestService
java:module/ReportRestService
12:03:47,933 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ModelRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
java:global/imixs-jsf-example-4.2.0/ModelRestService!org.imixs.workflow.jaxrs.ModelRestService
java:app/imixs-jsf-example-4.2.0/ModelRestService!org.imixs.workflow.jaxrs.ModelRestService
java:module/ModelRestService!org.imixs.workflow.jaxrs.ModelRestService
ejb:imixs-jsf-example-4.2.0/ModelRestService!org.imixs.workflow.jaxrs.ModelRestService
java:global/imixs-jsf-example-4.2.0/ModelRestService
java:app/imixs-jsf-example-4.2.0/ModelRestService
java:module/ModelRestService
12:03:47,933 WARN [org.jboss.as.ee] (MSC service thread 1-1) WFLYEE0002: Could not resolve resource-env-ref java:/mail/ org.imixs.workflow.mail 12:03:48,511 INFO [org.jboss.weld.Version] (MSC service thread 1-5) WELD-000900: 3.0.5 (redhat) 12:03:48,527 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 72) WFLYCLINF0002: Started client- mappings cache from ejb container 12:03:49,323 WARN [org.jboss.weld.Bootstrap] (MSC service thread 1-2) WELD-000146: BeforeBeanDiscovery.addAnnotatedType (AnnotatedType<?>) used for class com.sun.faces.flow.FlowDiscoveryCDIHelper is deprecated from CDI 1.1! 12:03:50,183 WARN [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 77) RESTEASY002150: resteasy.s can is no longer supported. Use a servlet 3.0 container and the ResteasyServletInitializer 12:03:50,792 INFO [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 77) Initializing Mo jarra 2.3.5.SP2-redhat-00001 for context '' 12:03:52,141 INFO [io.jaegertracing.Configuration] (ServerService Thread Pool -- 77) Initialized tracer=JaegerTracer(ve rsion=Java-0.30.6.redhat-00001, serviceName=imixs-jsf-example-4.2.0.war, reporter=RemoteReporter(sender=UdpSender(), clo seEnqueueTimeout=1000), sampler=RemoteControlledSampler(maxOperations=2000, manager=HttpSamplingManager(hostPort=localho st:5778), sampler=ProbabilisticSampler(tags={sampler.type=probabilistic, sampler.param=0.001})), tags={hostname=PRATIK, jaeger.version=Java-0.30.6.redhat-00001, ip=192.168.43.246}, zipkinSharedRpcSpan=false, expandExceptionLogs=false) 12:03:52,172 WARN [io.undertow.servlet] (ServerService Thread Pool -- 77) UT015020: Path /api/ is secured for some HTT P methods, however it is not secured for [TRACE, HEAD, CONNECT, OPTIONS] 12:03:52,172 WARN [io.undertow.servlet] (ServerService Thread Pool -- 77) UT015020: Path /pages/ is secured for some H TTP methods, however it is not secured for [TRACE, HEAD, CONNECT, OPTIONS] 12:03:52,203 INFO [org.imixs.workflow.engine.scheduler.SchedulerStartupServlet] (ServerService Thread Pool -- 77) ...st arting Imixs-Schedulers... 12:03:52,219 INFO [org.imixs.workflow.engine.scheduler.SchedulerService] (ServerService Thread Pool -- 77) ...starting Imixs Schedulers.... 12:03:52,828 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 77) WFLYUT0021: Registered web context : '/' for server 'default-server' 12:03:52,844 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0010: Deployed "imixs-jsf-example-4.2.0.war" (r untime-name : "imixs-jsf-example-4.2.0.war") 12:03:52,844 INFO [org.jboss.as.server] (ServerService Thread Pool -- 42) WFLYSRV0010: Deployed "mysql-connector-java-5 .1.25.jar" (runtime-name : "mysql-connector-java-5.1.25.jar") 12:03:52,953 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server 12:03:52,953 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://12 7.0.0.1:9990/management 12:03:52,953 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990
12:03:52,953 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: JBoss EAP 7.2.0.GA (WildFly Core 6.0.11.Final-re dhat-00001) started in 23710ms - Started 1134 of 1316 services (330 services are lazy, passive or on-demand)
What did you mean? Can't you see a login screen (it should be the basic authentication dialog)? Or are you unable to authenticate successful? Have you change the security domain to 'filerealm'?
yes sir I have changed the security domain to "filerealm" but I cant see the login screen . the application is deployed on web console with name imims-jsf-example-4.2.0. when I checked the jboss-web.xml here I saw
ok, if you open your browser at http://localhost:8080/ what happens?
it directs me on jboss home page Welcome to JBoss EAP 7 Your Red Hat JBoss Enterprise Application Platform is running.
Administration Console | Documentation | Online User Groups To replace this page simply deploy your own war with / as its context path. To
sir do i need to provide welcome.xhtm as start page in jboss.xml??
please take a look at the jboss web console http://localhost:9990/ under deployments you can check the status of your applications:
sir I have added
so now its taking me to login page
but sir
i want to know
Main Attributes
Nameimixs-jsf-example-4.2.0.war
Runtime Nameimixs-jsf-example-4.2.0.war
Context Root/pages/welcome.xhtml
Enabled, Managed, Exploded =
Status OK
Last enabled 2/7/19, 3:18 PM
Last disabled at n/a
but look at this section sir enable-ye Managed -yes exploaded - no
why exploaded -no ??
exploding deployments in jboss is not a question of imixs-workflow. Please try to get support from your jboss.
sir this is how it looks
thank you so much for support sir Now I am able to see and also getting entry in to database for team list
sir with your permission can we start its latest documentation.. I will help you regarding its documentation
feel free to contribute :-)
jsf-example-4.2.0.war" (runtime-name: "imixs-jsf-example-4.2.0.war") 10:47:57,594 INFO [org.jboss.as.jpa] (MSC service thread 1-5) WFLYJPA0002: Read persistence.xml for org.imixs.workflow. jpa 10:47:57,954 INFO [org.jboss.as.jpa] (ServerService Thread Pool -- 72) WFLYJPA0003: Starting Persistence Unit Service ' imixs-jsf-example-4.2.0.war#org.imixs.workflow.jpa' 10:47:58,907 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.Entity] is set to [PROPERTY]. 10:47:58,954 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getCalendarItems] is being defaulted to: class org.imixs.workflow.jee.jp a.CalendarItem. 10:47:58,954 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getTextItems] is being defaulted to: class org.imixs.workflow.jee.jpa.Te xtItem. 10:47:58,954 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getDoubleItems] is being defaulted to: class org.imixs.workflow.jee.jpa. DoubleItem. 10:47:58,954 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getIntegerItems] is being defaulted to: class org.imixs.workflow.jee.jpa .IntegerItem. 10:47:58,969 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getReadAccessList] is being defaulted to: class org.imixs.workflow.jee.j pa.ReadAccess. 10:47:58,969 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target entity (reference) cl ass for the one to many mapping element [method getWriteAccessList] is being defaulted to: class org.imixs.workflow.jee. jpa.WriteAccess. 10:47:58,969 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.EntityIndex] is set to [PROPERTY]. 10:47:58,969 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.TextItem] is set to [FIELD]. 10:47:58,969 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.WriteAccess] is set to [FIELD]. 10:47:58,969 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.IntegerItem] is set to [FIELD]. 10:47:58,985 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.engine.jpa.Document] is set to [PROPERTY]. 10:47:58,985 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.DoubleItem] is set to [FIELD]. 10:47:58,985 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.ReadAccess] is set to [FIELD]. 10:47:58,985 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The access type for the persiste nt class [class org.imixs.workflow.jee.jpa.CalendarItem] is set to [FIELD]. 10:47:58,985 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.Entity] is being defaulted to: Entity. 10:47:58,985 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.Entity] is being defaulted to: ENTITY. 10:47:59,032 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Data] is being defaulted to: DATA. 10:47:59,032 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Created] is being defaulted to: CREATED. 10:47:59,032 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Modified] is being defaulted to: MODIFIED. 10:47:59,032 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Id] is being defaulted to: ID. 10:47:59,032 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Type] is being defaulted to: TYPE. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Version] is being defaulted to: VERSION. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.EntityIndex] is being defaulted to: EntityIndex. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.EntityIndex] is being defaulted to: ENTITYINDEX. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Name] is being defaulted to: NAME. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Typ] is being defaulted to: TYP. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.TextItem] is being defaulted to: TextItem. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.TextItem] is being defaulted to: TEXTITEM. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mName] is being defaulted to: ITEMNAME. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mValue] is being defaulted to: ITEMVALUE. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 10:47:59,047 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.WriteAccess] is being defaulted to: WriteAccess. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.WriteAccess] is being defaulted to: WRITEACCESS. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [val ue] is being defaulted to: VALUE. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.IntegerItem] is being defaulted to: IntegerItem. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.IntegerItem] is being defaulted to: INTEGERITEM. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mName] is being defaulted to: ITEMNAME. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mValue] is being defaulted to: ITEMVALUE. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.engine.jpa.Document] is being defaulted to: Document. 10:47:59,063 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.engine.jpa.Document] is being defaulted to: DOCUMENT. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Data] is being defaulted to: DATA. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Created] is being defaulted to: CREATED. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Modified] is being defaulted to: MODIFIED. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Id] is being defaulted to: ID. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Type] is being defaulted to: TYPE. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [get Version] is being defaulted to: VERSION. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.DoubleItem] is being defaulted to: DoubleItem. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.DoubleItem] is being defaulted to: DOUBLEITEM. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mName] is being defaulted to: ITEMNAME. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mValue] is being defaulted to: ITEMVALUE. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 10:47:59,079 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.ReadAccess] is being defaulted to: ReadAccess. 10:47:59,094 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.ReadAccess] is being defaulted to: READACCESS. 10:47:59,094 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 10:47:59,094 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [val ue] is being defaulted to: VALUE. 10:47:59,094 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The alias name for the entity cl ass [class org.imixs.workflow.jee.jpa.CalendarItem] is being defaulted to: CalendarItem. 10:47:59,094 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The table name for entity [class org.imixs.workflow.jee.jpa.CalendarItem] is being defaulted to: CALENDARITEM. 10:47:59,094 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mName] is being defaulted to: ITEMNAME. 10:47:59,094 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [ite mValue] is being defaulted to: ITEMVALUE. 10:47:59,094 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The column name for element [id] is being defaulted to: ID. 10:47:59,126 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getTextItems] is being defaulted to: ENTITY_TEXTITEM. 10:47:59,126 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getTextItems] is being defaulted to: ID. 10:47:59,126 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getTextItems] is being defaulted to: Entity_ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getTextItems] is being defaulted to: ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getTextItems] is being defaulted to: textItems_ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getDoubleItems] is being defaulted to: ENTITY_DOUBLEITEM. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getDoubleItems] is being defaulted to: ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getDoubleItems] is being defaulted to: Entity_ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getDoubleItems] is being defaulted to: ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getDoubleItems] is being defaulted to: doubleItems_ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getWriteAccessList] is being defaulted to: ENTITY_WRITEACCESS. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getWriteAccessList] is being defaulted to: ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getWriteAccessList] is being defaulted to: Entity_ID. 10:47:59,141 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getWriteAccessList] is being defaulted to: ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getWriteAccessList] is being defaulted to: writeAccessList_ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getIntegerItems] is being defaulted to: ENTITY_INTEGERITEM. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getIntegerItems] is being defaulted to: ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getIntegerItems] is being defaulted to: Entity_ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getIntegerItems] is being defaulted to: ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getIntegerItems] is being defaulted to: integerItems_ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getCalendarItems] is being defaulted to: ENTITY_CALENDARITEM. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getCalendarItems] is being defaulted to: ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getCalendarItems] is being defaulted to: Entity_ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getCalendarItems] is being defaulted to: ID. 10:47:59,157 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getCalendarItems] is being defaulted to: calendarItems_ID. 10:47:59,172 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The join table name for the many to many mapping [method getReadAccessList] is being defaulted to: ENTITY_READACCESS. 10:47:59,172 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source primary key column na me for the many to many mapping [method getReadAccessList] is being defaulted to: ID. 10:47:59,172 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The source foreign key column na me for the many to many mapping [getReadAccessList] is being defaulted to: Entity_ID. 10:47:59,172 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target primary key column na me for the many to many mapping [method getReadAccessList] is being defaulted to: ID. 10:47:59,172 INFO [org.eclipse.persistence.metadata] (ServerService Thread Pool -- 72) The target foreign key column na me for the many to many mapping [getReadAccessList] is being defaulted to: readAccessList_ID. 10:47:59,172 INFO [org.eclipse.persistence.weaver] (ServerService Thread Pool -- 72) Class org.imixs.workflow.jee.jpa.E ntity could not be weaved for change tracking as it is not supported by its mappings. 10:47:59,454 INFO [org.hibernate.validator.internal.util.Version] (ServerService Thread Pool -- 72) HV000001: Hibernate Validator 6.0.14.Final-redhat-00001 10:47:59,751 INFO [org.eclipse.persistence] (ServerService Thread Pool -- 72) EclipseLink, version: Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a 10:48:00,204 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) connecting(DatabaseLogin( platform=>MySQLPlatform user name=> "" connector=>JNDIConnector datasource name=>null )) 10:48:00,204 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) Connected: jdbc:mysql://localh ost:3306/imixs User: root@localhost Database: MySQL Version: 5.7.25-log Driver: MySQL-AB JDBC Driver Version: mysql-connector-java-5.1.6 ( Revision: ${svn.Revision} ) 10:48:00,204 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) connecting(DatabaseLogin( platform=>MySQLPlatform user name=> "" connector=>JNDIConnector datasource name=>null )) 10:48:00,219 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) Connected: jdbc:mysql://localh ost:3306/imixs User: root@localhost Database: MySQL Version: 5.7.25-log Driver: MySQL-AB JDBC Driver Version: mysql-connector-java-5.1.6 ( Revision: ${svn.Revision} ) 10:48:00,297 INFO [org.eclipse.persistence.connection] (ServerService Thread Pool -- 72) /vfs:/C:/Users/PRATIK/EAP-7.2. 0/bin/content/imixs-jsf-example-4.2.0.war/WEB-INF/classes/_org.imixs.workflow.jpa login successful 10:48:10,420 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:48:20,444 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:48:30,465 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:48:40,490 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:48:50,520 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:49:05,624 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:49:16,071 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:49:26,094 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:49:36,118 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:49:46,143 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:49:56,189 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:06,201 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:16,237 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:26,263 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:36,291 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:36,291 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:36,306 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:36,306 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:36,306 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:36,322 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:36,322 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:46,330 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:46,346 INFO [org.eclipse.persistence.query] (ServerService Thread Pool -- 72) Communication failure detected when attempting to perform read query outside of a transaction. Attempting to retry query. Error was: Exception [EclipseLink -4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; che ck the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=DE FAULT' at line 1 Error Code: 1064 Call: SELECT FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN' Query: DataReadQuery(sql="SELECT FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN'"). 10:50:46,346 INFO [org.eclipse.persistence.query] (ServerService Thread Pool -- 72) Communication failure detected when attempting to perform read query outside of a transaction. Attempting to retry query. Error was: Exception [EclipseLink -4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; che ck the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=DE FAULT' at line 1 Error Code: 1064 Call: SELECT FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN' Query: DataReadQuery(sql="SELECT FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN'"). 10:50:51,375 INFO [org.eclipse.persistence.query] (ServerService Thread Pool -- 72) Communication failure detected when attempting to perform read query outside of a transaction. Attempting to retry query. Error was: Exception [EclipseLink -4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; che ck the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=DE FAULT' at line 1 Error Code: 1064 Call: SELECT FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN' Query: DataReadQuery(sql="SELECT FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN'"). 10:50:56,387 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 72) 10:50:56,605 INFO [org.jboss.weld.deployer] (MSC service thread 1-1) WFLYWELD0003: Processing weld deployment imixs-jsf -example-4.2.0.war 10:50:57,074 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'JobHandlerUpgradeWorkitems' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
eWorkitems java:app/imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems!org.imixs.workflow.engine.adminp.JobHandlerUpgradeWo rkitems java:module/JobHandlerUpgradeWorkitems!org.imixs.workflow.engine.adminp.JobHandlerUpgradeWorkitems ejb:imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems!org.imixs.workflow.engine.adminp.JobHandlerUpgradeWorkite ms java:global/imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems java:app/imixs-jsf-example-4.2.0/JobHandlerUpgradeWorkitems java:module/JobHandlerUpgradeWorkitems
10:50:57,074 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ModelRestServiceV3' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,074 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,090 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'SchedulerService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,090 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'JobHandlerMigration3X' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,090 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'EntityRestServiceV3' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,090 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowSchedulerService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,090 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'AdminPRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,090 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'AdminPRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,105 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'LoadRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,105 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'JobHandlerRenameUser' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,105 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'DocumentRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,105 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,105 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'TextPropertyValueAdapter' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,105 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowRestServiceV3' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,121 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'AdminPService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,121 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'EntityService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,121 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'RootRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,121 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'JobHandlerRebuildIndex' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
ex java:app/imixs-jsf-example-4.2.0/JobHandlerRebuildIndex!org.imixs.workflow.engine.adminp.JobHandlerRebuildIndex java:module/JobHandlerRebuildIndex!org.imixs.workflow.engine.adminp.JobHandlerRebuildIndex ejb:imixs-jsf-example-4.2.0/JobHandlerRebuildIndex!org.imixs.workflow.engine.adminp.JobHandlerRebuildIndex java:global/imixs-jsf-example-4.2.0/JobHandlerRebuildIndex java:app/imixs-jsf-example-4.2.0/JobHandlerRebuildIndex java:module/JobHandlerRebuildIndex
10:50:57,136 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'RootRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,136 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'LuceneSearchService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,136 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'DocumentService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,136 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ModelService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,136 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'TextItemValueAdapter' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,136 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'WorkflowRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,152 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ReportService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,152 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'SchedulerConfigurationService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
onfigurationService java:app/imixs-jsf-example-4.2.0/SchedulerConfigurationService!org.imixs.workflow.engine.scheduler.SchedulerConf igurationService java:module/SchedulerConfigurationService!org.imixs.workflow.engine.scheduler.SchedulerConfigurationService ejb:imixs-jsf-example-4.2.0/SchedulerConfigurationService!org.imixs.workflow.engine.scheduler.SchedulerConfigura tionService java:global/imixs-jsf-example-4.2.0/SchedulerConfigurationService java:app/imixs-jsf-example-4.2.0/SchedulerConfigurationService java:module/SchedulerConfigurationService
10:50:57,152 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'LuceneUpdateService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,152 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'PropertyService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,152 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'DocumentRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,168 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ModelRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,168 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ReportRestServiceV40' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,168 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'SimulationService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,168 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ReportRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,168 INFO [org.jboss.as.ejb3.deployment] (MSC service thread 1-1) WFLYEJB0473: JNDI bindings for session bean n amed 'ModelRestService' in deployment unit 'deployment "imixs-jsf-example-4.2.0.war"' are as follows:
10:50:57,183 WARN [org.jboss.as.ee] (MSC service thread 1-1) WFLYEE0002: Could not resolve resource-env-ref java:/mail/ org.imixs.workflow.mail 10:50:57,730 INFO [org.jboss.weld.Version] (MSC service thread 1-1) WELD-000900: 3.0.5 (redhat) 10:50:58,183 WARN [org.jboss.weld.Bootstrap] (MSC service thread 1-8) WELD-000146: BeforeBeanDiscovery.addAnnotatedType (AnnotatedType<?>) used for class com.sun.faces.flow.FlowDiscoveryCDIHelper is deprecated from CDI 1.1! 10:50:59,152 WARN [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 102) RESTEASY002150: resteasy. scan is no longer supported. Use a servlet 3.0 container and the ResteasyServletInitializer 10:51:00,433 INFO [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 102) Initializing M ojarra 2.3.5.SP2-redhat-00001 for context '' 10:51:04,183 INFO [io.jaegertracing.Configuration] (ServerService Thread Pool -- 102) Initialized tracer=JaegerTracer(v ersion=Java-0.30.6.redhat-00001, serviceName=imixs-jsf-example-4.2.0.war, reporter=RemoteReporter(sender=UdpSender(), cl oseEnqueueTimeout=1000), sampler=RemoteControlledSampler(maxOperations=2000, manager=HttpSamplingManager(hostPort=localh ost:5778), sampler=ProbabilisticSampler(tags={sampler.type=probabilistic, sampler.param=0.001})), tags={hostname=PRATIK, jaeger.version=Java-0.30.6.redhat-00001, ip=192.168.43.246}, zipkinSharedRpcSpan=false, expandExceptionLogs=false) 10:51:04,480 WARN [io.undertow.servlet] (ServerService Thread Pool -- 102) UT015020: Path /api/ is secured for some HT TP methods, however it is not secured for [TRACE, HEAD, CONNECT, OPTIONS] 10:51:04,480 WARN [io.undertow.servlet] (ServerService Thread Pool -- 102) UT015020: Path /pages/ is secured for some HTTP methods, however it is not secured for [TRACE, HEAD, CONNECT, OPTIONS] 10:51:04,698 INFO [org.imixs.workflow.engine.scheduler.SchedulerStartupServlet] (ServerService Thread Pool -- 102) ...s tarting Imixs-Schedulers... 10:51:04,839 INFO [org.imixs.workflow.engine.scheduler.SchedulerService] (ServerService Thread Pool -- 102) ...starting Imixs Schedulers.... 10:51:05,487 INFO [org.eclipse.persistence.query] (ServerService Thread Pool -- 102) Communication failure detected whe n attempting to perform read query outside of a transaction. Attempting to retry query. Error was: Exception [EclipseLin k-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseExceptio n Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?"). 10:51:05,503 INFO [org.eclipse.persistence.query] (ServerService Thread Pool -- 102) Communication failure detected whe n attempting to perform read query outside of a transaction. Attempting to retry query. Error was: Exception [EclipseLin k-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseExceptio n Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?"). 10:51:10,522 INFO [org.eclipse.persistence.query] (ServerService Thread Pool -- 102) Communication failure detected whe n attempting to perform read query outside of a transaction. Attempting to retry query. Error was: Exception [EclipseLin k-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseExceptio n Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?"). 10:51:15,530 WARN [org.eclipse.persistence] (ServerService Thread Pool -- 102) 10:51:15,623 ERROR [org.jboss.as.ejb3.invocation] (ServerService Thread Pool -- 102) WFLYEJB0034: EJB Invocation failed on component LuceneUpdateService for method public boolean org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEve ntLog(int): javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persis tence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:246) at org.jboss.as.ejb3.tx.CMTTxInterceptor.requiresNew(CMTTxInterceptor.java:380) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:146) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.ejb3.component.singleton.ContainerManagedConcurrencyInterceptor.processInvocation(ContainerManag edConcurrencyInterceptor.java:106) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneUpdateService$$$view29.flushEventLog(Unknown Source) at org.imixs.workflow.engine.lucene.LuceneSearchService.flush(LuceneSearchService.java:321) at org.imixs.workflow.engine.lucene.LuceneSearchService.search(LuceneSearchService.java:185) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneSearchService$$$view22.search(Unknown Source) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:746) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:703) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.DocumentService$$$view23.find(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerService.startAllSchedulers(SchedulerService.java:304) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:362) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:81) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.scheduler.SchedulerService$$$view4.startAllSchedulers(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerStartupServlet.init(SchedulerStartupServlet.java:35) at javax.servlet.GenericServlet.init(GenericServlet.java:244) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:117) at org.wildfly.extension.undertow.security.RunAsLifecycleInterceptor.init(RunAsLifecycleInterceptor.java:78) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:103) at io.undertow.servlet.core.ManagedServlet$DefaultInstanceStrategy.start(ManagedServlet.java:303) at io.undertow.servlet.core.ManagedServlet.createServlet(ManagedServlet.java:143) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:583) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:554) at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction .java:42) at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) at org.wildfly.extension.undertow.security.SecurityContextThreadSetupAction.lambda$create$0(SecurityContextThrea dSetupAction.java:105) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at io.undertow.servlet.core.DeploymentManagerImpl.start(DeploymentManagerImpl.java:596) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService.startContext(UndertowDeploymentService.ja va:97) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService$1.run(UndertowDeploymentService.java:78) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) at java.lang.Thread.run(Thread.java:748) at org.jboss.threads.JBossThread.run(JBossThread.java:485) Caused by: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v2 0190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.internal.jpa.QueryImpl.getDetailedException(QueryImpl.java:391) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:264) at org.eclipse.persistence.internal.jpa.QueryImpl.getResultList(QueryImpl.java:482) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLogByCount(LuceneUpdateService.java:431) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLog(LuceneUpdateService.java:377) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.singleton.SingletonComponentInstanceAssociationInterceptor.processInvocation(Sing letonComponentInstanceAssociationInterceptor.java:53) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) ... 249 more Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persist ence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:342) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.processExceptionForCommError(DatabaseAccesso r.java:1650) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:683) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:567) at org.eclipse.persistence.internal.sessions.AbstractSession.basicExecuteCall(AbstractSession.java:2096) at org.eclipse.persistence.sessions.server.ServerSession.executeCall(ServerSession.java:603) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:275) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:261) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMe chanism.java:332) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechan ism.java:728) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMecha nism.java:2773) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java :2726) at org.eclipse.persistence.queries.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:584) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:1224) at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:914) at org.eclipse.persistence.queries.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:1183) at org.eclipse.persistence.queries.ReadAllQuery.execute(ReadAllQuery.java:485) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:1271) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2981) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1895) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1877) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1842) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:262) ... 277 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist at sun.reflect.GeneratedConstructorAccessor20.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at com.mysql.jdbc.Util.handleNewInstance(Util.java:406) at com.mysql.jdbc.Util.getInstance(Util.java:381) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1030) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3491) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3423) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1936) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2060) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2542) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1734) at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1864) at org.jboss.jca.adapters.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:504) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeSelect(DatabaseAccessor.java:1015) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:651) ... 309 more
10:51:15,748 ERROR [org.jboss.as.ejb3.invocation] (ServerService Thread Pool -- 102) WFLYEJB0034: EJB Invocation failed on component LuceneSearchService for method public java.util.List org.imixs.workflow.engine.lucene.LuceneSearchService.s earch(java.lang.String,int,int,org.apache.lucene.search.Sort,org.apache.lucene.queryparser.classic.QueryParser$Operator) throws org.imixs.workflow.exceptions.QueryException: javax.ejb.EJBTransactionRolledbackException: javax.persistence.Per sistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse .persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:203) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneSearchService$$$view22.search(Unknown Source) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:746) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:703) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.DocumentService$$$view23.find(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerService.startAllSchedulers(SchedulerService.java:304) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:362) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:81) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.scheduler.SchedulerService$$$view4.startAllSchedulers(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerStartupServlet.init(SchedulerStartupServlet.java:35) at javax.servlet.GenericServlet.init(GenericServlet.java:244) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:117) at org.wildfly.extension.undertow.security.RunAsLifecycleInterceptor.init(RunAsLifecycleInterceptor.java:78) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:103) at io.undertow.servlet.core.ManagedServlet$DefaultInstanceStrategy.start(ManagedServlet.java:303) at io.undertow.servlet.core.ManagedServlet.createServlet(ManagedServlet.java:143) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:583) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:554) at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction .java:42) at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) at org.wildfly.extension.undertow.security.SecurityContextThreadSetupAction.lambda$create$0(SecurityContextThrea dSetupAction.java:105) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at io.undertow.servlet.core.DeploymentManagerImpl.start(DeploymentManagerImpl.java:596) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService.startContext(UndertowDeploymentService.ja va:97) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService$1.run(UndertowDeploymentService.java:78) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) at java.lang.Thread.run(Thread.java:748) at org.jboss.threads.JBossThread.run(JBossThread.java:485) Caused by: javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persist ence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:246) at org.jboss.as.ejb3.tx.CMTTxInterceptor.requiresNew(CMTTxInterceptor.java:380) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:146) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.ejb3.component.singleton.ContainerManagedConcurrencyInterceptor.processInvocation(ContainerManag edConcurrencyInterceptor.java:106) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneUpdateService$$$view29.flushEventLog(Unknown Source) at org.imixs.workflow.engine.lucene.LuceneSearchService.flush(LuceneSearchService.java:321) at org.imixs.workflow.engine.lucene.LuceneSearchService.search(LuceneSearchService.java:185) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) ... 185 more Caused by: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v2 0190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.internal.jpa.QueryImpl.getDetailedException(QueryImpl.java:391) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:264) at org.eclipse.persistence.internal.jpa.QueryImpl.getResultList(QueryImpl.java:482) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLogByCount(LuceneUpdateService.java:431) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLog(LuceneUpdateService.java:377) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.singleton.SingletonComponentInstanceAssociationInterceptor.processInvocation(Sing letonComponentInstanceAssociationInterceptor.java:53) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) ... 249 more Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persist ence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:342) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.processExceptionForCommError(DatabaseAccesso r.java:1650) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:683) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:567) at org.eclipse.persistence.internal.sessions.AbstractSession.basicExecuteCall(AbstractSession.java:2096) at org.eclipse.persistence.sessions.server.ServerSession.executeCall(ServerSession.java:603) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:275) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:261) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMe chanism.java:332) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechan ism.java:728) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMecha nism.java:2773) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java :2726) at org.eclipse.persistence.queries.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:584) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:1224) at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:914) at org.eclipse.persistence.queries.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:1183) at org.eclipse.persistence.queries.ReadAllQuery.execute(ReadAllQuery.java:485) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:1271) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2981) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1895) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1877) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1842) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:262) ... 277 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist at sun.reflect.GeneratedConstructorAccessor20.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at com.mysql.jdbc.Util.handleNewInstance(Util.java:406) at com.mysql.jdbc.Util.getInstance(Util.java:381) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1030) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3491) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3423) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1936) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2060) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2542) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1734) at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1864) at org.jboss.jca.adapters.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:504) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeSelect(DatabaseAccessor.java:1015) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:651) ... 309 more
10:51:15,842 ERROR [org.jboss.as.ejb3.invocation] (ServerService Thread Pool -- 102) WFLYEJB0034: EJB Invocation failed on component DocumentService for method public java.util.List org.imixs.workflow.engine.DocumentService.find(java.lang.S tring,int,int) throws org.imixs.workflow.exceptions.QueryException: javax.ejb.EJBTransactionRolledbackException: javax.p ersistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a ): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:203) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneSearchService$$$view22.search(Unknown Source) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:746) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:703) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.DocumentService$$$view23.find(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerService.startAllSchedulers(SchedulerService.java:304) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:362) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:81) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.scheduler.SchedulerService$$$view4.startAllSchedulers(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerStartupServlet.init(SchedulerStartupServlet.java:35) at javax.servlet.GenericServlet.init(GenericServlet.java:244) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:117) at org.wildfly.extension.undertow.security.RunAsLifecycleInterceptor.init(RunAsLifecycleInterceptor.java:78) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:103) at io.undertow.servlet.core.ManagedServlet$DefaultInstanceStrategy.start(ManagedServlet.java:303) at io.undertow.servlet.core.ManagedServlet.createServlet(ManagedServlet.java:143) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:583) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:554) at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction .java:42) at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) at org.wildfly.extension.undertow.security.SecurityContextThreadSetupAction.lambda$create$0(SecurityContextThrea dSetupAction.java:105) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at io.undertow.servlet.core.DeploymentManagerImpl.start(DeploymentManagerImpl.java:596) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService.startContext(UndertowDeploymentService.ja va:97) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService$1.run(UndertowDeploymentService.java:78) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) at java.lang.Thread.run(Thread.java:748) at org.jboss.threads.JBossThread.run(JBossThread.java:485) Caused by: javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persist ence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:246) at org.jboss.as.ejb3.tx.CMTTxInterceptor.requiresNew(CMTTxInterceptor.java:380) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:146) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.ejb3.component.singleton.ContainerManagedConcurrencyInterceptor.processInvocation(ContainerManag edConcurrencyInterceptor.java:106) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneUpdateService$$$view29.flushEventLog(Unknown Source) at org.imixs.workflow.engine.lucene.LuceneSearchService.flush(LuceneSearchService.java:321) at org.imixs.workflow.engine.lucene.LuceneSearchService.search(LuceneSearchService.java:185) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) ... 185 more Caused by: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v2 0190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.internal.jpa.QueryImpl.getDetailedException(QueryImpl.java:391) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:264) at org.eclipse.persistence.internal.jpa.QueryImpl.getResultList(QueryImpl.java:482) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLogByCount(LuceneUpdateService.java:431) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLog(LuceneUpdateService.java:377) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.singleton.SingletonComponentInstanceAssociationInterceptor.processInvocation(Sing letonComponentInstanceAssociationInterceptor.java:53) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) ... 249 more Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persist ence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:342) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.processExceptionForCommError(DatabaseAccesso r.java:1650) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:683) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:567) at org.eclipse.persistence.internal.sessions.AbstractSession.basicExecuteCall(AbstractSession.java:2096) at org.eclipse.persistence.sessions.server.ServerSession.executeCall(ServerSession.java:603) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:275) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:261) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMe chanism.java:332) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechan ism.java:728) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMecha nism.java:2773) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java :2726) at org.eclipse.persistence.queries.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:584) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:1224) at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:914) at org.eclipse.persistence.queries.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:1183) at org.eclipse.persistence.queries.ReadAllQuery.execute(ReadAllQuery.java:485) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:1271) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2981) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1895) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1877) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1842) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:262) ... 277 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist at sun.reflect.GeneratedConstructorAccessor20.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at com.mysql.jdbc.Util.handleNewInstance(Util.java:406) at com.mysql.jdbc.Util.getInstance(Util.java:381) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1030) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3491) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3423) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1936) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2060) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2542) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1734) at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1864) at org.jboss.jca.adapters.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:504) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeSelect(DatabaseAccessor.java:1015) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:651) ... 309 more
10:51:15,936 ERROR [org.jboss.as.ejb3.invocation] (ServerService Thread Pool -- 102) WFLYEJB0034: EJB Invocation failed on component SchedulerService for method public void org.imixs.workflow.engine.scheduler.SchedulerService.startAllSchedu lers(): javax.ejb.EJBTransactionRolledbackException: javax.persistence.PersistenceException: Exception [EclipseLink-4002 ] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:203) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneSearchService$$$view22.search(Unknown Source) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:746) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:703) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.DocumentService$$$view23.find(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerService.startAllSchedulers(SchedulerService.java:304) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:362) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:81) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.scheduler.SchedulerService$$$view4.startAllSchedulers(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerStartupServlet.init(SchedulerStartupServlet.java:35) at javax.servlet.GenericServlet.init(GenericServlet.java:244) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:117) at org.wildfly.extension.undertow.security.RunAsLifecycleInterceptor.init(RunAsLifecycleInterceptor.java:78) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:103) at io.undertow.servlet.core.ManagedServlet$DefaultInstanceStrategy.start(ManagedServlet.java:303) at io.undertow.servlet.core.ManagedServlet.createServlet(ManagedServlet.java:143) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:583) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:554) at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction .java:42) at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) at org.wildfly.extension.undertow.security.SecurityContextThreadSetupAction.lambda$create$0(SecurityContextThrea dSetupAction.java:105) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at io.undertow.servlet.core.DeploymentManagerImpl.start(DeploymentManagerImpl.java:596) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService.startContext(UndertowDeploymentService.ja va:97) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService$1.run(UndertowDeploymentService.java:78) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) at java.lang.Thread.run(Thread.java:748) at org.jboss.threads.JBossThread.run(JBossThread.java:485) Caused by: javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persist ence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:246) at org.jboss.as.ejb3.tx.CMTTxInterceptor.requiresNew(CMTTxInterceptor.java:380) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:146) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.ejb3.component.singleton.ContainerManagedConcurrencyInterceptor.processInvocation(ContainerManag edConcurrencyInterceptor.java:106) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneUpdateService$$$view29.flushEventLog(Unknown Source) at org.imixs.workflow.engine.lucene.LuceneSearchService.flush(LuceneSearchService.java:321) at org.imixs.workflow.engine.lucene.LuceneSearchService.search(LuceneSearchService.java:185) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) ... 185 more Caused by: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v2 0190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.internal.jpa.QueryImpl.getDetailedException(QueryImpl.java:391) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:264) at org.eclipse.persistence.internal.jpa.QueryImpl.getResultList(QueryImpl.java:482) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLogByCount(LuceneUpdateService.java:431) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLog(LuceneUpdateService.java:377) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.singleton.SingletonComponentInstanceAssociationInterceptor.processInvocation(Sing letonComponentInstanceAssociationInterceptor.java:53) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) ... 249 more Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persist ence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:342) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.processExceptionForCommError(DatabaseAccesso r.java:1650) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:683) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:567) at org.eclipse.persistence.internal.sessions.AbstractSession.basicExecuteCall(AbstractSession.java:2096) at org.eclipse.persistence.sessions.server.ServerSession.executeCall(ServerSession.java:603) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:275) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:261) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMe chanism.java:332) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechan ism.java:728) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMecha nism.java:2773) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java :2726) at org.eclipse.persistence.queries.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:584) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:1224) at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:914) at org.eclipse.persistence.queries.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:1183) at org.eclipse.persistence.queries.ReadAllQuery.execute(ReadAllQuery.java:485) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:1271) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2981) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1895) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1877) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1842) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:262) ... 277 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist at sun.reflect.GeneratedConstructorAccessor20.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at com.mysql.jdbc.Util.handleNewInstance(Util.java:406) at com.mysql.jdbc.Util.getInstance(Util.java:381) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1030) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3491) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3423) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1936) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2060) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2542) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1734) at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1864) at org.jboss.jca.adapters.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:504) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeSelect(DatabaseAccessor.java:1015) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:651) ... 309 more
10:51:16,029 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 102) MSC000001: Failed to start service jb oss.deployment.unit."imixs-jsf-example-4.2.0.war".undertow-deployment: org.jboss.msc.service.StartException in service j boss.deployment.unit."imixs-jsf-example-4.2.0.war".undertow-deployment: javax.ejb.EJBTransactionRolledbackException: jav ax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c 6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.wildfly.extension.undertow.deployment.UndertowDeploymentService$1.run(UndertowDeploymentService.java:81) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) at java.lang.Thread.run(Thread.java:748) at org.jboss.threads.JBossThread.run(JBossThread.java:485) Caused by: javax.ejb.EJBTransactionRolledbackException: javax.persistence.PersistenceException: Exception [EclipseLink-4 002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:203) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneSearchService$$$view22.search(Unknown Source) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:746) at org.imixs.workflow.engine.DocumentService.find(DocumentService.java:703) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:364) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.AuthorizationInterceptor.processInvocation(AuthorizationInterceptor.java:138) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.DocumentService$$$view23.find(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerService.startAllSchedulers(SchedulerService.java:304) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) at org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:362) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:144) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:81) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.scheduler.SchedulerService$$$view4.startAllSchedulers(Unknown Source) at org.imixs.workflow.engine.scheduler.SchedulerStartupServlet.init(SchedulerStartupServlet.java:35) at javax.servlet.GenericServlet.init(GenericServlet.java:244) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:117) at org.wildfly.extension.undertow.security.RunAsLifecycleInterceptor.init(RunAsLifecycleInterceptor.java:78) at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:103) at io.undertow.servlet.core.ManagedServlet$DefaultInstanceStrategy.start(ManagedServlet.java:303) at io.undertow.servlet.core.ManagedServlet.createServlet(ManagedServlet.java:143) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:583) at io.undertow.servlet.core.DeploymentManagerImpl$2.call(DeploymentManagerImpl.java:554) at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction .java:42) at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) at org.wildfly.extension.undertow.security.SecurityContextThreadSetupAction.lambda$create$0(SecurityContextThrea dSetupAction.java:105) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$crea te$0(UndertowDeploymentInfoService.java:1502) at io.undertow.servlet.core.DeploymentManagerImpl.start(DeploymentManagerImpl.java:596) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService.startContext(UndertowDeploymentService.ja va:97) at org.wildfly.extension.undertow.deployment.UndertowDeploymentService$1.run(UndertowDeploymentService.java:78) ... 8 more Caused by: javax.ejb.EJBException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persist ence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:246) at org.jboss.as.ejb3.tx.CMTTxInterceptor.requiresNew(CMTTxInterceptor.java:380) at org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:146) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeAc tivationInterceptor.java:72) at org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterce ptor.java:89) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocat ionContextInterceptor.java:41) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.WaitTimeInterceptor.processInvocation(WaitTimeInterceptor.java: 47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.security.SecurityContextInterceptor.processInvocation(SecurityContextInterceptor.java:100) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.deployment.processors.StartupAwaitInterceptor.processInvocation(StartupAwaitInterceptor.jav a:22) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.ejb3.component.singleton.ContainerManagedConcurrencyInterceptor.processInvocation(ContainerManag edConcurrencyInterceptor.java:106) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.ShutDownInterceptorFactory$1.processInvocation(ShutDownInterceptorFa ctory.java:64) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.LoggingInterceptor.processInvocation(LoggingInterceptor.java:67) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext.run(InterceptorContext.java:438) at org.wildfly.security.manager.WildFlySecurityManager.doChecked(WildFlySecurityManager.java:619) at org.jboss.invocation.AccessCheckingInterceptor.processInvocation(AccessCheckingInterceptor.java:57) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.ViewService$View.invoke(ViewService.java:198) at org.jboss.as.ee.component.ViewDescription$1.processInvocation(ViewDescription.java:185) at org.jboss.as.ee.component.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:81) at org.imixs.workflow.engine.lucene.LuceneUpdateService$$$view29.flushEventLog(Unknown Source) at org.imixs.workflow.engine.lucene.LuceneSearchService.flush(LuceneSearchService.java:321) at org.imixs.workflow.engine.lucene.LuceneSearchService.search(LuceneSearchService.java:185) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:47) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:5 1) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInCallerTx(CMTTxInterceptor.java:185) ... 185 more Caused by: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v2 0190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.internal.jpa.QueryImpl.getDetailedException(QueryImpl.java:391) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:264) at org.eclipse.persistence.internal.jpa.QueryImpl.getResultList(QueryImpl.java:482) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLogByCount(LuceneUpdateService.java:431) at org.imixs.workflow.engine.lucene.LuceneUpdateService.flushEventLog(LuceneUpdateService.java:377) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodIntercept or.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java: 90) at org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:101 ) at org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java :63) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterce ptor.java:43) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:4 5) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53) at org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherIn terceptor.java:52) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.singleton.SingletonComponentInstanceAssociationInterceptor.processInvocation(Sing letonComponentInstanceAssociationInterceptor.java:53) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupIntercep tor.java:54) at org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422) at org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237) ... 249 more Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persist ence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist Error Code: 1146 Call: SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ? bind => [4 parameters bound] Query: ReadAllQuery(referenceClass=Document sql="SELECT ID AS a1, CREATED AS a2, DATA AS a3, MODIFIED AS a4, TYPE AS a5, VERSION AS a6 FROM DOCUMENT WHERE (TYPE IN (?, ?)) ORDER BY CREATED ASC LIMIT ?, ?") at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:342) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.processExceptionForCommError(DatabaseAccesso r.java:1650) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:683) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:567) at org.eclipse.persistence.internal.sessions.AbstractSession.basicExecuteCall(AbstractSession.java:2096) at org.eclipse.persistence.sessions.server.ServerSession.executeCall(ServerSession.java:603) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:275) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanis m.java:261) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMe chanism.java:332) at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechan ism.java:728) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMecha nism.java:2773) at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java :2726) at org.eclipse.persistence.queries.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:584) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:1224) at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:914) at org.eclipse.persistence.queries.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:1183) at org.eclipse.persistence.queries.ReadAllQuery.execute(ReadAllQuery.java:485) at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:1271) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2981) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1895) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.retryQuery(AbstractSession.java:1966) at org.eclipse.persistence.sessions.server.ClientSession.retryQuery(ClientSession.java:704) at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.retryQuery(UnitOfWorkImpl.java:5662) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1932) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1877) at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1842) at org.eclipse.persistence.internal.jpa.QueryImpl.executeReadQuery(QueryImpl.java:262) ... 277 more Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document' doesn't exist at sun.reflect.GeneratedConstructorAccessor20.newInstance(Unknown Source) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at com.mysql.jdbc.Util.handleNewInstance(Util.java:406) at com.mysql.jdbc.Util.getInstance(Util.java:381) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1030) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3491) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3423) at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1936) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2060) at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2542) at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1734) at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1864) at org.jboss.jca.adapters.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:504) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeSelect(DatabaseAccessor.java:1015) at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:651) ... 309 more
10:51:16,123 ERROR [org.jboss.as.controller.management-operation] (External Management Request Threads -- 1) WFLYCTL0013 : Operation ("add") failed - address: ([("deployment" => "imixs-jsf-example-4.2.0.war")]) - failure description: {"WFLYC TL0080: Failed services" => {"jboss.deployment.unit.\"imixs-jsf-example-4.2.0.war\".undertow-deployment" => "javax.ejb.E JBTransactionRolledbackException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persiste nce Services - 2.7.4.v20190115-ad5b7c6b2a): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'imixs.document'