1 Reply Latest reply on Jun 6, 2018 4:39 PM by robyp7

    remoting ejb, EJBCLIENT000025: No EJB receiver available for handling

    robyp7

      Hi

       

      My project is composed by 4 maven modules:

      CQ-Ev-api (standard data class and interfaces)

      CQ-EV-business ( ejb type: it s a jar that exposes the ejb stateless DocumentCreatorBean class, that implements remote interface DocumentRemote)

      CQ-EV-ear (it' an ear wich includes CQ-EV-business ejb for wildfly deployement)

      CQ-EV-frontEnds (it' s a war application ,try to point to the business remote EJB DocumentRemote with http-remoting protocol call.

       

      I deploy CQ-EV-ear in wildfly (server1)

      and CQ-EV-frontEnds in another wildfly ("server 2") wich call ejb DocumentRemote implementation (DocumentCreatorBean) by http-remoting with 2 modes.

       

      server 1 and server 2 have got the same version (wildfly 10.1.0)

       

      I call the remote ejb from server 2 with two choice:

       

      - first choice: inject remote proxy in ejb singleton :

       

      @Statelss

      @Startup

      public class StartUpTriggerEvents {

       

      @EJB(lookup = "java:global/DocumentCreatorBean") //jndi name mappend in standalone-full.xml
      DocumentRemote documentCreatorBean;

      ..

      }

       

      - the second choice is programatically in  a RemoteEjbClient 

       

      For the first choice i have follow this guide for configuring wildfly server 2:

      EJB invocations from a remote server instance - WildFly 10 - Project Documentation Editor

       

      For the second choice i follow this other guides (example in the end of page )

      EJB invocations from a remote client using JNDI - JBoss AS 7.1 - Project Documentation Editor

       

      But i get that error:

      Obtained a remote stateless calculator for invocation

      Exception in thread "main" java.lang.IllegalStateException: EJBCLIENT000025: No EJB receiver available for handling [appName:CQ-EV-ear, moduleName:CQ-EV-business, distinctName:] combination for invocation context org.jboss.ejb.client.EJBClientInvocationContext@1e88b3c

      at org.jboss.ejb.client.EJBClientContext.requireEJBReceiver(EJBClientContext.java:798)

      at org.jboss.ejb.client.ReceiverInterceptor.handleInvocation(ReceiverInterceptor.java:128)

      at org.jboss.ejb.client.EJBClientInvocationContext.sendRequest(EJBClientInvocationContext.java:186)

      at org.jboss.ejb.client.EJBInvocationHandler.sendRequestWithPossibleRetries(EJBInvocationHandler.java:255)

      at org.jboss.ejb.client.EJBInvocationHandler.doInvoke(EJBInvocationHandler.java:200)

      at org.jboss.ejb.client.EJBInvocationHandler.doInvoke(EJBInvocationHandler.java:183)

      at org.jboss.ejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:146)

      at com.sun.proxy.$Proxy2.pdfCreator(Unknown Source)

      at com.cadit.main.RemoteEJBClient.invokeStatelessBean(RemoteEJBClient.java:36)

      at com.cadit.main.RemoteEJBClient.main(RemoteEJBClient.java:24)

       

      What's wrong?

       

      my user is ejb, my password is test.

      the wildfly server 1 listen on 8080 (telnet 8080 and http 8080 browser are ok).

       

       

       

      The ejb client for test purpose is in com.cadit.main package (RemoteEJBclient.java)

      The remote calling is in CQ-EV-fronteEnds module, see StartUpTriggerEvents.java:

       

      the 2 standalone-full.xml (server 1 and server 2)  are in this location:

      CQ-EV-business/wildfly-configurations/standalone-full.xml

      CQ-EV-frontEnds/wildfly-configurations/standalone-full.xml

       

      wildfly log server1:

       

      cmd.exe /c C:/Servers/wildfly-10.1.0.Final/bin/standalone.bat -server-config=standalone-full.xml -Djboss.node.name=node1Business

      Calling "C:\Servers\wildfly-10.1.0.Final\bin\standalone.conf.bat"

      Setting JAVA property to "C:\Program Files\Java\jdk1.8.0_65\bin\java"

      ===============================================================================

       

       

        JBoss Bootstrap Environment

       

       

        JBOSS_HOME: "C:\Servers\wildfly-10.1.0.Final"

       

       

        JAVA: "C:\Program Files\Java\jdk1.8.0_65\bin\java"

       

       

        JAVA_OPTS: "-Dprogram.name=standalone.bat -Xms64M -Xmx512M -XX:MetaspaceSize=96M -XX:MaxMetaspaceSize=256m -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -agentlib:jdwp=transport=dt_socket,address=8787,server=y,suspend=n"

       

       

      ===============================================================================

       

       

      Listening for transport dt_socket at address: 8787

      21:14:41,841 INFO  [org.jboss.modules] (main) JBoss Modules version 1.5.2.Final

      21:14:42,485 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.6.Final

      21:14:42,581 INFO  [org.jboss.as] (MSC service thread 1-7) WFLYSRV0049: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) starting

      21:14:47,141 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)

      21:14:47,172 INFO  [org.xnio] (MSC service thread 1-4) XNIO version 3.4.0.Final

      21:14:47,184 INFO  [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.4.0.Final

      21:14:47,299 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 41) WFLYCLINF0001: Activating Infinispan subsystem.

      21:14:47,312 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 60) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique.

      21:14:47,348 INFO  [org.wildfly.iiop.openjdk] (ServerService Thread Pool -- 42) WFLYIIOP0001: Activating IIOP Subsystem

      21:14:47,362 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 52) WFLYNAM0001: Activating Naming Subsystem

      21:14:47,380 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 40) WFLYIO001: Worker 'default' has auto-configured to 8 core threads with 64 task threads based on your 4 available processors

      21:14:47,389 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 62) WFLYWS0002: Activating WebServices Extension

      21:14:47,407 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 48) WFLYJSF0007: Activated the following JSF Implementations: [main]

      21:14:47,410 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 59) WFLYSEC0002: Activating Security Subsystem

      21:14:47,462 INFO  [org.jboss.as.connector] (MSC service thread 1-1) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final)

      21:14:47,473 INFO  [org.jboss.as.security] (MSC service thread 1-6) WFLYSEC0001: Current PicketBox version=4.9.6.Final

      21:14:47,532 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0003: Undertow 1.4.0.Final starting

      21:14:47,574 INFO  [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 4.0.21.Final

      21:14:47,764 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 36) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)

      21:14:47,827 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) WFLYJCA0018: Started Driver service with driver-name = h2

      21:14:47,881 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 36) WFLYJCA0004: Deploying JDBC-compliant driver class org.hsqldb.jdbc.JDBCDriver (version 2.3)

      21:14:47,979 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-1) WFLYJCA0018: Started Driver service with driver-name = hsqldb

      21:14:48,073 INFO  [org.jboss.as.naming] (MSC service thread 1-5) WFLYNAM0003: Starting Naming Service

      21:14:48,103 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-3) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]

      21:14:48,247 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 61) WFLYUT0014: Creating file handler for path 'C:\Servers\wildfly-10.1.0.Final/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']

      21:14:48,268 INFO  [org.jboss.as.ejb3] (MSC service thread 1-6) 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.

      21:14:48,268 INFO  [org.jboss.as.ejb3] (MSC service thread 1-4) 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.

      21:14:48,376 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0012: Started server default-server.

      21:14:48,377 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0018: Host default-host starting

      21:14:48,955 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0006: Undertow HTTP listener default listening on 0.0.0.0:8080

      21:14:49,469 WARN  [org.jboss.as.domain.management.security] (MSC service thread 1-3) WFLYDM0111: Keystore C:\Servers\wildfly-10.1.0.Final\standalone\configuration\application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost

      21:14:49,496 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-6) WFLYMSGAMQ0001: AIO wasn't located on this platform, it will fall back to using pure Java NIO.

      21:14:49,533 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-3) WFLYDS0013: Started FileSystemDeploymentService for directory C:\Servers\wildfly-10.1.0.Final\standalone\deployments

      21:14:49,876 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221000: live Message Broker is starting with configuration Broker Configuration (clustered=false,journalDirectory=C:\Servers\wildfly-10.1.0.Final\standalone\data\activemq\journal,bindingsDirectory=C:\Servers\wildfly-10.1.0.Final\standalone\data\activemq\bindings,largeMessagesDirectory=C:\Servers\wildfly-10.1.0.Final\standalone\data\activemq\largemessages,pagingDirectory=C:\Servers\wildfly-10.1.0.Final\standalone\data\activemq\paging)

      21:14:49,993 INFO  [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-1) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final

      21:14:49,997 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221013: Using NIO Journal

      21:14:50,016 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS]

      21:14:50,016 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) WFLYJCA0001: Bound data source [java:jboss/jdbc/testDS]

      21:14:50,373 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 67) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

      21:14:50,375 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 67) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

      21:14:50,375 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 68) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

      21:14:50,376 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 66) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

      21:14:50,378 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 66) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

      21:14:50,394 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 68) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

      21:14:50,571 INFO  [org.wildfly.iiop.openjdk] (MSC service thread 1-2) WFLYIIOP0009: CORBA ORB Service started

      21:14:50,591 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0006: Undertow HTTPS listener https listening on 0.0.0.0:8443

      21:14:50,606 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-server]. Adding protocol support for: CORE

      21:14:50,658 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-amqp-protocol]. Adding protocol support for: AMQP

      21:14:50,764 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-hornetq-protocol]. Adding protocol support for: HORNETQ

      21:14:50,781 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221043: Protocol module found: [artemis-stomp-protocol]. Adding protocol support for: STOMP

      21:14:51,138 INFO  [org.jboss.ws.common.management] (MSC service thread 1-8) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.6)

      21:14:51,361 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-5) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor

      21:14:51,361 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor

      21:14:51,362 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-8) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor

      21:14:51,361 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-3) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor

      21:14:51,441 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221007: Server is now live

      21:14:51,441 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 64) AMQ221001: Apache ActiveMQ Artemis Message Broker version 1.1.0.wildfly-017 [nodeID=980be2fa-6961-11e8-be11-5754e11bbf2a]

      21:14:51,445 INFO  [org.apache.activemq.artemis.jms.server] (ServerService Thread Pool -- 64) AMQ121005: Invalid "host" value "0.0.0.0" detected for "http-connector" connector. Switching to "CAD1652". If this new address is incorrect please manually configure the connector to use the proper one.

      21:14:51,461 INFO  [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 64) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory

      21:14:51,475 INFO  [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 66) WFLYMSGAMQ0002: Bound messaging object to jndi name java:/ConnectionFactory

      21:14:51,477 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 69) AMQ221003: trying to deploy queue jms.queue.DLQ

      21:14:51,486 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 68) AMQ221003: trying to deploy queue jms.queue.ExpiryQueue

      21:14:51,547 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-2) WFLYJCA0007: Registered connection factory java:/JmsXA

      21:14:51,662 INFO  [org.apache.activemq.artemis.ra] (MSC service thread 1-2) Resource adaptor started

      21:14:51,663 INFO  [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-2) IJ020002: Deployed: file://RaActivatoractivemq-ra

      21:14:51,669 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-7) WFLYJCA0002: Bound JCA ConnectionFactory [java:/JmsXA]

      21:14:51,670 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/DefaultJMSConnectionFactory

      21:14:51,950 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9090/management

      21:14:51,951 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9090

      21:14:51,952 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) started in 10825ms - Started 377 of 622 services (409 services are lazy, passive or on-demand)

      21:15:07,947 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0001: Content added at location C:\Servers\wildfly-10.1.0.Final\standalone\data\content\64\2299c18035e0c743f7f49a7fc1cec9493622d9\content

      21:15:07,966 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0027: Starting deployment of "CQ-EV-ear.ear" (runtime-name: "CQ-EV-ear.ear")

      21:15:08,749 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0207: Starting subdeployment (runtime-name: "com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar")

      21:15:08,753 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0001: /C:/Windows/System32/content/CQ-EV-ear.ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar/META-INF/jboss-deployment-structure.xml in subdeployment ignored. jboss-deployment-structure.xml is only parsed for top level deployments.

      21:15:09,325 WARN  [org.jboss.weld.deployer] (MSC service thread 1-4) WFLYWELD0012: Warning while parsing vfs:/C:/Windows/System32/content/CQ-EV-ear.ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar/META-INF/beans.xml:5 cvc-complex-type.3.2.2: Attribute 'version' is not allowed to appear in element 'beans'.

      21:15:09,325 WARN  [org.jboss.weld.deployer] (MSC service thread 1-4) WFLYWELD0012: Warning while parsing vfs:/C:/Windows/System32/content/CQ-EV-ear.ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar/META-INF/beans.xml:5 cvc-complex-type.3.2.2: Attribute 'bean-discovery-mode' is not allowed to appear in element 'beans'.

      21:15:09,345 INFO  [org.jboss.as.jpa] (MSC service thread 1-4) WFLYJPA0002: Read persistence.xml for testDS

      21:15:09,532 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 11) WFLYJPA0010: Starting Persistence Unit (phase 1 of 2) Service 'CQ-EV-ear.ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar#testDS'

      21:15:09,541 INFO  [org.jboss.weld.deployer] (MSC service thread 1-3) WFLYWELD0003: Processing weld deployment CQ-EV-ear.ear

      21:15:09,563 INFO  [org.hibernate.jpa.internal.util.LogHelper] (ServerService Thread Pool -- 11) HHH000204: Processing PersistenceUnitInfo [

      name: testDS

      ...]

      21:15:09,704 INFO  [org.hibernate.Version] (ServerService Thread Pool -- 11) HHH000412: Hibernate Core {5.0.10.Final}

      21:15:09,722 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 11) HHH000206: hibernate.properties not found

      21:15:09,724 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 11) HHH000021: Bytecode provider name : javassist

      21:15:09,813 INFO  [org.hibernate.annotations.common.Version] (ServerService Thread Pool -- 11) HCANN000001: Hibernate Commons Annotations {5.0.1.Final}

      21:15:09,826 INFO  [org.hibernate.validator.internal.util.Version] (MSC service thread 1-3) HV000001: Hibernate Validator 5.2.4.Final

      21:15:10,033 INFO  [org.jboss.weld.deployer] (MSC service thread 1-8) WFLYWELD0003: Processing weld deployment com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar

      21:15:10,051 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-8) WFLYEJB0473: JNDI bindings for session bean named 'DocumentCreatorBean' in deployment unit 'subdeployment "com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar" of deployment "CQ-EV-ear.ear"' are as follows:

       

       

      java:global/CQ-EV-ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreatorBean!com.cadit.data.DocumentRemote

      java:app/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreatorBean!com.cadit.data.DocumentRemote

      java:module/DocumentCreatorBean!com.cadit.data.DocumentRemote

      java:jboss/exported/CQ-EV-ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreatorBean!com.cadit.data.DocumentRemote

      java:global/CQ-EV-ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreatorBean

      java:app/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreatorBean

      java:module/DocumentCreatorBean

       

       

      21:15:10,051 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-8) WFLYEJB0473: JNDI bindings for session bean named 'DocumentCreator' in deployment unit 'subdeployment "com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar" of deployment "CQ-EV-ear.ear"' are as follows:

       

       

      java:global/CQ-EV-ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreator!com.cadit.boundary.DocumentCreator

      java:app/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreator!com.cadit.boundary.DocumentCreator

      java:module/DocumentCreator!com.cadit.boundary.DocumentCreator

      java:global/CQ-EV-ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreator

      java:app/com.cadit-CQ-EV-business-1.0-SNAPSHOT/DocumentCreator

      java:module/DocumentCreator

       

       

      21:15:10,103 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) WFLYJCA0004: Deploying JDBC-compliant driver class org.hsqldb.jdbc.JDBCDriver (version 2.3)

      21:15:10,155 INFO  [org.jboss.weld.Version] (MSC service thread 1-6) WELD-000900: 2.3.5 (Final)

      21:15:10,179 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-8) WFLYJCA0018: Started Driver service with driver-name = CQ-EV-ear.ear_org.hsqldb.jdbc.JDBCDriver_2_3

      21:15:10,409 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 11) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

      21:15:10,410 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 11) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.

      21:15:10,555 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 7) WFLYJPA0010: Starting Persistence Unit (phase 2 of 2) Service 'CQ-EV-ear.ear/com.cadit-CQ-EV-business-1.0-SNAPSHOT.jar#testDS'

      21:15:11,085 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 11) WFLYCLINF0002: Started client-mappings cache from ejb container

      21:15:13,660 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0010: Deployed "CQ-EV-ear.ear" (runtime-name : "CQ-EV-ear.ear")

       

      Thank you

       

      Roby