I have installed Ignite server running inside Docker container based on
CentOS 7. 

All my configuration with sources, Dockerfiles and server config avialable
on GitHub:
 github.com/heavyjax/ignitedemo

I`m usind this command to run Ignite Server Docker image:
docker run -dit --net=streams-net --name=ignite -p 47100:47100 -p
47500:47500 -p 47501:47501 -p 47502:47502 -p 47503:47503 -p 47504:47504 -p
47505:47505 -p 47506:47506 -p 47507:47507 -p 47508:47508 -p 47509:47509 -p
11211:11211 -p 49112:49112 ignite:latest

And this command to run Ignite Client Docker image:
docker run -dit --name streams_wf -v
~/tmp/app:/opt/jboss/wildfly/standalone/deployments/:rw -v
~/tmp/logs:/opt/jboss/wildfly/standalone/log/:rw --network=streams-net -p
9990:9990 -p 9999:9999 -p 8090:8080 wf18:latest

Here is my server config:
<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd";>
    <bean id="ignite.cfg"
class="org.apache.ignite.configuration.IgniteConfiguration">
        <property name="cacheConfiguration">
            <list>
                
                <bean
class="org.apache.ignite.configuration.CacheConfiguration">
                    <property name="name" value="default"/>
                    <property name="atomicityMode" value="ATOMIC"/>
                    <property name="backups" value="1"/>
                </bean>
            </list>
        </property>

        
        <property name="discoverySpi">
            <bean
class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
                <property name="ipFinder">
                    
                    
                    
                    <bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.multicast.TcpDiscoveryMulticastIpFinder">
                        <property name="addresses">
                            <list>
                                
                                <value>172.20.0.3:47500..47509</value>
                            </list>
                        </property>
                    </bean>
                </property>
            </bean>
        </property>
    </bean>
</beans>

Connection from host machine (Mac OS) to Ignite server in Docker is working
fine, but when I`m trying to run my client application in another Docker
container (based on Jboss/Wildfly image) I have exception. Telnet from
Wildfly container to Ignite container is successfully connected.

Here is client code:

package org.example;

import javax.annotation.PostConstruct;
import javax.ejb.Singleton;
import javax.ejb.Startup;

@Singleton
@Startup
public class Main {

    @PostConstruct
    private void startup(){
        try {
            IgniteInitializer initializer = new IgniteInitializer();
            initializer.init();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

package org.example;

import org.apache.ignite.*;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi;
import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi;
import
org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;

import java.util.Arrays;

public class IgniteInitializer {

    public void init() throws InterruptedException {
        TcpDiscoveryVmIpFinder ipFinder = new TcpDiscoveryVmIpFinder();
        ipFinder.setAddresses(Arrays.asList("172.20.0.3:47500..47509"));

        TcpDiscoverySpi discoverySpi = new TcpDiscoverySpi();
        discoverySpi.setLocalPort(47500);
        discoverySpi.setLocalPortRange(9);
        discoverySpi.setIpFinder(ipFinder);

        TcpCommunicationSpi commSpi = new TcpCommunicationSpi();
        commSpi.setLocalPort(47100);

        IgniteConfiguration cfg = new IgniteConfiguration();
        cfg.setDiscoverySpi(discoverySpi);
        cfg.setCommunicationSpi(commSpi);
        cfg.setWorkDirectory("/home/apache-ignite-2.7.6-bin/work");
        cfg.setIgniteHome("/home/apache-ignite-2.7.6-bin");
        cfg.setClientMode(true);

        //cfg.setPeerClassLoadingEnabled(true);

        try (Ignite ignite = Ignition.start(cfg)) {
            IgniteCache<Integer, String> cache =
ignite.getOrCreateCache("data");
            for (int i = 100; i < 110; i++) {
                cache.put(i, Integer.toString(i));
                System.out.println("Record was added " + i);
            }
        }
    }
}


Here is log from Ignite Client:


2019-12-20 14:09:10,632 INFO  [io.smallrye.metrics] (MSC service thread 1-5)
MicroProfile: Metrics activated
2019-12-20 14:09:10,857 INFO  [org.jboss.as.clustering.infinispan]
(ServerService Thread Pool -- 76) WFLYCLINF0002: Started client-mappings
cache from ejb container
2019-12-20 14:09:11,451 ERROR [stderr] (ServerService Thread Pool -- 76)
Console logging handler is not configured.
2019-12-20 14:09:11,588 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76)

>>>    __________  ________________
>>>   /  _/ ___/ |/ /  _/_  __/ __/
>>>  _/ // (7 7    // /  / / / _/
>>> /___/\___/_/|_/___/ /_/ /___/
>>>
>>> ver. 2.7.6#20190911-sha1:21f7ca41
>>> 2019 Copyright(C) Apache Software Foundation
>>>
>>> Ignite documentation: http://ignite.apache.org

2019-12-20 14:09:11,592 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]    __________  ________________
2019-12-20 14:09:11,594 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]   /  _/ ___/ |/ /  _/_  __/ __/
2019-12-20 14:09:11,595 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]  _/ // (7 7    // /  / / / _/
2019-12-20 14:09:11,596 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] /___/\___/_/|_/___/ /_/ /___/
2019-12-20 14:09:11,597 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]
2019-12-20 14:09:11,598 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] ver. 2.7.6#20190911-sha1:21f7ca41
2019-12-20 14:09:11,600 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] 2019 Copyright(C) Apache Software Foundation
2019-12-20 14:09:11,601 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]
2019-12-20 14:09:11,602 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] Ignite documentation: http://ignite.apache.org
2019-12-20 14:09:11,603 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]
2019-12-20 14:09:11,605 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] Quiet mode.
2019-12-20 14:09:11,618 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]   ^-- Logging by 'JavaLogger [quiet=true, config=null]'
2019-12-20 14:09:11,621 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]   ^-- To see **FULL** console log here add -DIGNITE_QUIET=false
or "-v" to ignite.{sh|bat}
2019-12-20 14:09:11,622 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]
2019-12-20 14:09:11,623 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Config URL: n/a
2019-12-20 14:09:11,642 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) IgniteConfiguration
[igniteInstanceName=null, pubPoolSize=8, svcPoolSize=8, callbackPoolSize=8,
stripedPoolSize=8, sysPoolSize=8, mgmtPoolSize=4, igfsPoolSize=4,
dataStreamerPoolSize=8, utilityCachePoolSize=8,
utilityCacheKeepAliveTime=60000, p2pPoolSize=2, qryPoolSize=8,
igniteHome=/home/apache-ignite-2.7.6-bin,
igniteWorkDir=/home/apache-ignite-2.7.6-bin/work,
mbeanSrv=org.jboss.as.jmx.PluggableMBeanServerImpl@7dd45016,
nodeId=2f937dd5-d6ef-4a86-bf02-c88ffb48ec20, marsh=BinaryMarshaller [],
marshLocJobs=false, daemon=false, p2pEnabled=false, netTimeout=5000,
sndRetryDelay=1000, sndRetryCnt=3, metricsHistSize=10000,
metricsUpdateFreq=2000, metricsExpTime=9223372036854775807,
discoSpi=TcpDiscoverySpi [addrRslvr=null, sockTimeout=0, ackTimeout=0,
marsh=null, reconCnt=10, reconDelay=2000, maxAckTimeout=600000,
forceSrvMode=false, clientReconnectDisabled=false, internalLsnr=null],
segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true,
allResolversPassReq=true, segChkFreq=10000, commSpi=TcpCommunicationSpi
[connectGate=null,
connPlc=org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi$FirstConnectionPolicy@655c9de0,
enableForcibleNodeKill=false, enableTroubleshootingLog=false, locAddr=null,
locHost=null, locPort=47100, locPortRange=100, shmemPort=-1, directBuf=true,
directSndBuf=false, idleConnTimeout=600000, connTimeout=5000,
maxConnTimeout=600000, reconCnt=10, sockSndBuf=32768, sockRcvBuf=32768,
msgQueueLimit=0, slowClientQueueLimit=0, nioSrvr=null, shmemSrv=null,
usePairedConnections=false, connectionsPerNode=1, tcpNoDelay=true,
filterReachableAddresses=false, ackSndThreshold=32, unackedMsgsBufSize=0,
sockWriteTimeout=2000, boundTcpPort=-1, boundTcpShmemPort=-1,
selectorsCnt=4, selectorSpins=0, addrRslvr=null,
ctxInitLatch=java.util.concurrent.CountDownLatch@7b945e68[Count = 1],
stopping=false],
evtSpi=org.apache.ignite.spi.eventstorage.NoopEventStorageSpi@4057ca26,
colSpi=NoopCollisionSpi [], deploySpi=LocalDeploymentSpi [],
indexingSpi=org.apache.ignite.spi.indexing.noop.NoopIndexingSpi@63b1a7b6,
addrRslvr=null,
encryptionSpi=org.apache.ignite.spi.encryption.noop.NoopEncryptionSpi@1dc9571c,
clientMode=true, rebalanceThreadPoolSize=1, txCfg=TransactionConfiguration
[txSerEnabled=false, dfltIsolation=REPEATABLE_READ,
dfltConcurrency=PESSIMISTIC, dfltTxTimeout=0,
txTimeoutOnPartitionMapExchange=0, pessimisticTxLogSize=0,
pessimisticTxLogLinger=10000, tmLookupClsName=null, txManagerFactory=null,
useJtaSync=false], cacheSanityCheckEnabled=true, discoStartupDelay=60000,
deployMode=SHARED, p2pMissedCacheSize=100, locHost=null,
timeSrvPortBase=31100, timeSrvPortRange=100, failureDetectionTimeout=10000,
sysWorkerBlockedTimeout=null, clientFailureDetectionTimeout=30000,
metricsLogFreq=60000, hadoopCfg=null, connectorCfg=ConnectorConfiguration
[jettyPath=null, host=null, port=11211, noDelay=true, directBuf=false,
sndBufSize=32768, rcvBufSize=32768, idleQryCurTimeout=600000,
idleQryCurCheckFreq=60000, sndQueueLimit=0, selectorCnt=4, idleTimeout=7000,
sslEnabled=false, sslClientAuth=false, sslCtxFactory=null, sslFactory=null,
portRange=100, threadPoolSize=8, msgInterceptor=null], odbcCfg=null,
warmupClos=null, atomicCfg=AtomicConfiguration [seqReserveSize=1000,
cacheMode=PARTITIONED, backups=1, aff=null, grpName=null], classLdr=null,
sslCtxFactory=null, platformCfg=null, binaryCfg=null, memCfg=null,
pstCfg=null, dsCfg=null, activeOnStart=true, autoActivation=true,
longQryWarnTimeout=3000, sqlConnCfg=null,
cliConnCfg=ClientConnectorConfiguration [host=null, port=10800,
portRange=100, sockSndBufSize=0, sockRcvBufSize=0, tcpNoDelay=true,
maxOpenCursorsPerConn=128, threadPoolSize=8, idleTimeout=0,
jdbcEnabled=true, odbcEnabled=true, thinCliEnabled=true, sslEnabled=false,
useIgniteSslCtxFactory=true, sslClientAuth=false, sslCtxFactory=null],
mvccVacuumThreadCnt=2, mvccVacuumFreq=5000, authEnabled=false,
failureHnd=null, commFailureRslvr=null]
2019-12-20 14:09:11,644 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Daemon mode: off
2019-12-20 14:09:11,645 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] OS: Linux 4.9.184-linuxkit amd64
2019-12-20 14:09:11,646 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) OS: Linux 4.9.184-linuxkit amd64
2019-12-20 14:09:11,646 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) OS user: jboss
2019-12-20 14:09:11,654 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) PID: 98
2019-12-20 14:09:11,655 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] VM information: OpenJDK Runtime Environment 11.0.5+10-LTS Oracle
Corporation OpenJDK 64-Bit Server VM 11.0.5+10-LTS
2019-12-20 14:09:11,656 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Language runtime: Java Platform API
Specification ver. 11
2019-12-20 14:09:11,656 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) VM information: OpenJDK Runtime
Environment 11.0.5+10-LTS Oracle Corporation OpenJDK 64-Bit Server VM
11.0.5+10-LTS
2019-12-20 14:09:11,657 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) VM total memory: 0.5GB
2019-12-20 14:09:11,657 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Remote Management [restart: off, REST:
off, JMX (remote: off)]
2019-12-20 14:09:11,658 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Logger: JavaLogger [quiet=true,
config=null]
2019-12-20 14:09:11,658 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) IGNITE_HOME=/home/apache-ignite-2.7.6-bin
2019-12-20 14:09:11,659 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) VM arguments: [-D[Standalone], -Xms64m,
-Xmx512m, -XX:MetaspaceSize=96M, -XX:MaxMetaspaceSize=256m,
-Djava.net.preferIPv4Stack=true,
-Djboss.modules.system.pkgs=org.jboss.byteman, -Djava.awt.headless=true,
--add-exports=java.base/sun.nio.ch=ALL-UNNAMED,
--add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED,
--add-exports=jdk.unsupported/sun.reflect=ALL-UNNAMED,
-Dorg.jboss.boot.log.file=/opt/jboss/wildfly/standalone/log/server.log,
-Dlogging.configuration=file:/opt/jboss/wildfly/standalone/configuration/logging.properties]
2019-12-20 14:09:11,670 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Configured caches [in 'sysMemPlc'
dataRegion: ['ignite-sys-cache']]
2019-12-20 14:09:11,682 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) 3-rd party licenses can be found at:
/home/apache-ignite-2.7.6-bin/libs/licenses
2019-12-20 14:09:11,683 WARNING [org.apache.ignite.internal.GridDiagnostic]
(pub-#22) Initial heap size is 64MB (should be no less than 512MB, use
-Xms512m -Xmx512m).
2019-12-20 14:09:11,694 INFO  [stdout] (pub-#22) [14:09:11] Initial heap
size is 64MB (should be no less than 512MB, use -Xms512m -Xmx512m).
2019-12-20 14:09:11,778 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] Configured plugins:
2019-12-20 14:09:11,779 INFO 
[org.apache.ignite.internal.processors.plugin.IgnitePluginProcessor]
(ServerService Thread Pool -- 76) Configured plugins:
2019-12-20 14:09:11,780 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]   ^-- None
2019-12-20 14:09:11,780 INFO 
[org.apache.ignite.internal.processors.plugin.IgnitePluginProcessor]
(ServerService Thread Pool -- 76)   ^-- None
2019-12-20 14:09:11,781 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11]
2019-12-20 14:09:11,782 INFO 
[org.apache.ignite.internal.processors.plugin.IgnitePluginProcessor]
(ServerService Thread Pool -- 76)
2019-12-20 14:09:11,786 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] Configured failure handler: [hnd=StopNodeOrHaltFailureHandler
[tryStop=false, timeout=0, super=AbstractFailureHandler
[ignoredFailureTypes=[SYSTEM_WORKER_BLOCKED,
SYSTEM_CRITICAL_OPERATION_TIMEOUT]]]]
2019-12-20 14:09:11,787 INFO 
[org.apache.ignite.internal.processors.failure.FailureProcessor]
(ServerService Thread Pool -- 76) Configured failure handler:
[hnd=StopNodeOrHaltFailureHandler [tryStop=false, timeout=0,
super=AbstractFailureHandler [ignoredFailureTypes=[SYSTEM_WORKER_BLOCKED,
SYSTEM_CRITICAL_OPERATION_TIMEOUT]]]]
2019-12-20 14:09:11,836 INFO 
[org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi] (ServerService
Thread Pool -- 76) Successfully bound communication NIO server to TCP port
[port=47100, locHost=0.0.0.0/0.0.0.0, selectorsCnt=4, selectorSpins=0,
pairedConn=false]
2019-12-20 14:09:11,840 WARNING
[org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi] (ServerService
Thread Pool -- 76) Message queue limit is set to 0 which may lead to
potential OOMEs when running cache operations in FULL_ASYNC or PRIMARY_SYNC
modes due to message queues growth on sender and receiver sides.
2019-12-20 14:09:11,841 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] Message queue limit is set to 0 which may lead to potential OOMEs
when running cache operations in FULL_ASYNC or PRIMARY_SYNC modes due to
message queues growth on sender and receiver sides.
2019-12-20 14:09:11,866 WARNING
[org.apache.ignite.spi.checkpoint.noop.NoopCheckpointSpi] (ServerService
Thread Pool -- 76) Checkpoints are disabled (to enable configure any
GridCheckpointSpi implementation)
2019-12-20 14:09:11,901 WARNING
[org.apache.ignite.internal.managers.collision.GridCollisionManager]
(ServerService Thread Pool -- 76) Collision resolution is disabled (all jobs
will be activated upon arrival).
2019-12-20 14:09:11,907 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:11] Security status [authentication=off, tls/ssl=off]
2019-12-20 14:09:11,908 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Security status [authentication=off,
tls/ssl=off]
2019-12-20 14:09:12,033 SEVERE [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Exception during start processors, node
will be stopped and close connections: class
org.apache.ignite.binary.BinaryObjectException: Failed to find empty
constructor for class:
org.apache.ignite.internal.processors.platform.websession.PlatformDotNetSessionLockResult
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryClassDescriptor.constructor(BinaryClassDescriptor.java:981)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryClassDescriptor.<init>(BinaryClassDescriptor.java:267)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.registerPredefinedType(BinaryContext.java:1063)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.registerPredefinedType(BinaryContext.java:1048)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.<init>(BinaryContext.java:350)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.processors.cache.binary.CacheObjectBinaryProcessorImpl.start(CacheObjectBinaryProcessorImpl.java:208)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgniteKernal.startProcessor(IgniteKernal.java:1700)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgniteKernal.start(IgniteKernal.java:1013)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start0(IgnitionEx.java:2038)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start(IgnitionEx.java:1730)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start0(IgnitionEx.java:1158)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:678)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:603)
        at
deployment.StreamsApp.ear//org.apache.ignite.Ignition.start(Ignition.java:323)
        at
deployment.StreamsApp.ear.Streams.jar//ru.sbrf.streams.cache.IgniteInitializer.init(IgniteInitializer.java:34)
        at
deployment.StreamsApp.ear.Streams.jar//ru.sbrf.streams.Main.startup(Main.java:23)
        at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
        at
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.base/java.lang.reflect.Method.invoke(Method.java:566)
        at
[email protected]//org.jboss.as.ee.component.ManagedReferenceLifecycleMethodInterceptor.processInvocation(ManagedReferenceLifecycleMethodInterceptor.java:96)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.delegateInterception(Jsr299BindingsInterceptor.java:79)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doLifecycleInterception(Jsr299BindingsInterceptor.java:126)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:112)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)
        at
[email protected]//org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeActivationInterceptor.java:81)
        at
[email protected]//org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:89)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInjectionInterceptor.processInvocation(WeldInjectionInterceptor.java:53)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.component.AroundConstructInterceptorFactory$1.processInvocation(AroundConstructInterceptorFactory.java:28)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInterceptorInjectionInterceptor.processInvocation(WeldInterceptorInjectionInterceptor.java:56)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsCreateInterceptor.processInvocation(Jsr299BindingsCreateInterceptor.java:111)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237)
        at
[email protected]//org.jboss.as.ejb3.tx.CMTTxInterceptor.requiresNew(CMTTxInterceptor.java:388)
        at
[email protected]//org.jboss.as.ejb3.tx.LifecycleCMTTxInterceptor.processInvocation(LifecycleCMTTxInterceptor.java:68)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInjectionContextInterceptor.processInvocation(WeldInjectionContextInterceptor.java:43)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:45)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.StartupCountDownInterceptor.processInvocation(StartupCountDownInterceptor.java:25)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.constructComponentInstance(BasicComponent.java:161)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.constructComponentInstance(BasicComponent.java:134)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.createInstance(BasicComponent.java:88)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.SingletonComponent.getComponentInstance(SingletonComponent.java:127)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.SingletonComponent.start(SingletonComponent.java:141)
        at
[email protected]//org.jboss.as.ee.component.ComponentStartService$1.run(ComponentStartService.java:54)
        at
java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at
[email protected]//org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1982)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377)
        at java.base/java.lang.Thread.run(Thread.java:834)
        at
[email protected]//org.jboss.threads.JBossThread.run(JBossThread.java:485)

2019-12-20 14:09:12,042 SEVERE [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Got exception while starting (will
rollback startup routine).: class
org.apache.ignite.binary.BinaryObjectException: Failed to find empty
constructor for class:
org.apache.ignite.internal.processors.platform.websession.PlatformDotNetSessionLockResult
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryClassDescriptor.constructor(BinaryClassDescriptor.java:981)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryClassDescriptor.<init>(BinaryClassDescriptor.java:267)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.registerPredefinedType(BinaryContext.java:1063)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.registerPredefinedType(BinaryContext.java:1048)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.<init>(BinaryContext.java:350)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.processors.cache.binary.CacheObjectBinaryProcessorImpl.start(CacheObjectBinaryProcessorImpl.java:208)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgniteKernal.startProcessor(IgniteKernal.java:1700)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgniteKernal.start(IgniteKernal.java:1013)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start0(IgnitionEx.java:2038)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start(IgnitionEx.java:1730)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start0(IgnitionEx.java:1158)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:678)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:603)
        at
deployment.StreamsApp.ear//org.apache.ignite.Ignition.start(Ignition.java:323)
        at
deployment.StreamsApp.ear.Streams.jar//ru.sbrf.streams.cache.IgniteInitializer.init(IgniteInitializer.java:34)
        at
deployment.StreamsApp.ear.Streams.jar//ru.sbrf.streams.Main.startup(Main.java:23)
        at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
        at
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.base/java.lang.reflect.Method.invoke(Method.java:566)
        at
[email protected]//org.jboss.as.ee.component.ManagedReferenceLifecycleMethodInterceptor.processInvocation(ManagedReferenceLifecycleMethodInterceptor.java:96)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.delegateInterception(Jsr299BindingsInterceptor.java:79)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doLifecycleInterception(Jsr299BindingsInterceptor.java:126)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:112)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)
        at
[email protected]//org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeActivationInterceptor.java:81)
        at
[email protected]//org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:89)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInjectionInterceptor.processInvocation(WeldInjectionInterceptor.java:53)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.component.AroundConstructInterceptorFactory$1.processInvocation(AroundConstructInterceptorFactory.java:28)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInterceptorInjectionInterceptor.processInvocation(WeldInterceptorInjectionInterceptor.java:56)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsCreateInterceptor.processInvocation(Jsr299BindingsCreateInterceptor.java:111)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237)
        at
[email protected]//org.jboss.as.ejb3.tx.CMTTxInterceptor.requiresNew(CMTTxInterceptor.java:388)
        at
[email protected]//org.jboss.as.ejb3.tx.LifecycleCMTTxInterceptor.processInvocation(LifecycleCMTTxInterceptor.java:68)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInjectionContextInterceptor.processInvocation(WeldInjectionContextInterceptor.java:43)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:45)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.StartupCountDownInterceptor.processInvocation(StartupCountDownInterceptor.java:25)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.constructComponentInstance(BasicComponent.java:161)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.constructComponentInstance(BasicComponent.java:134)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.createInstance(BasicComponent.java:88)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.SingletonComponent.getComponentInstance(SingletonComponent.java:127)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.SingletonComponent.start(SingletonComponent.java:141)
        at
[email protected]//org.jboss.as.ee.component.ComponentStartService$1.run(ComponentStartService.java:54)
        at
java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at
[email protected]//org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1982)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377)
        at java.base/java.lang.Thread.run(Thread.java:834)
        at
[email protected]//org.jboss.threads.JBossThread.run(JBossThread.java:485)

2019-12-20 14:09:12,046 WARNING [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76) Attempt to stop starting grid. This
operation cannot be guaranteed to be successful.
2019-12-20 14:09:12,066 INFO  [stdout] (ServerService Thread Pool -- 76)
[14:09:12] Ignite node stopped OK [uptime=00:00:02.174]
2019-12-20 14:09:12,066 INFO  [org.apache.ignite.internal.IgniteKernal]
(ServerService Thread Pool -- 76)

>>> +---------------------------------------------------------------------------------+
>>> Ignite ver. 2.7.6#20190911-sha1:21f7ca41c4348909e2fd26ccf59b5b2ce1f4474e
>>> stopped OK
>>> +---------------------------------------------------------------------------------+
>>> Grid uptime: 00:00:02.174


2019-12-20 14:09:12,093 ERROR [org.jboss.msc.service.fail] (ServerService
Thread Pool -- 76) MSC000001: Failed to start service
jboss.deployment.subunit."StreamsApp.ear"."Streams.jar".component.Main.START:
org.jboss.msc.service.StartException in service
jboss.deployment.subunit."StreamsApp.ear"."Streams.jar".component.Main.START:
java.lang.IllegalStateException: WFLYEE0042: Failed to construct component
instance
        at
[email protected]//org.jboss.as.ee.component.ComponentStartService$1.run(ComponentStartService.java:57)
        at
java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at
[email protected]//org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1982)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486)
        at
[email protected]//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377)
        at java.base/java.lang.Thread.run(Thread.java:834)
        at
[email protected]//org.jboss.threads.JBossThread.run(JBossThread.java:485)
Caused by: java.lang.IllegalStateException: WFLYEE0042: Failed to construct
component instance
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.constructComponentInstance(BasicComponent.java:163)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.constructComponentInstance(BasicComponent.java:134)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.createInstance(BasicComponent.java:88)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.SingletonComponent.getComponentInstance(SingletonComponent.java:127)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.SingletonComponent.start(SingletonComponent.java:141)
        at
[email protected]//org.jboss.as.ee.component.ComponentStartService$1.run(ComponentStartService.java:54)
        ... 8 more
Caused by: javax.ejb.EJBException: class
org.apache.ignite.binary.BinaryObjectException: Failed to find empty
constructor for class:
org.apache.ignite.internal.processors.platform.websession.PlatformDotNetSessionLockResult
        at
[email protected]//org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:246)
        at
[email protected]//org.jboss.as.ejb3.tx.CMTTxInterceptor.requiresNew(CMTTxInterceptor.java:388)
        at
[email protected]//org.jboss.as.ejb3.tx.LifecycleCMTTxInterceptor.processInvocation(LifecycleCMTTxInterceptor.java:68)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInjectionContextInterceptor.processInvocation(WeldInjectionContextInterceptor.java:43)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:41)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:45)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.ContextClassLoaderInterceptor.processInvocation(ContextClassLoaderInterceptor.java:60)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.component.singleton.StartupCountDownInterceptor.processInvocation(StartupCountDownInterceptor.java:25)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53)
        at
[email protected]//org.jboss.as.ee.component.BasicComponent.constructComponentInstance(BasicComponent.java:161)
        ... 13 more
Caused by: class org.apache.ignite.binary.BinaryObjectException: Failed to
find empty constructor for class:
org.apache.ignite.internal.processors.platform.websession.PlatformDotNetSessionLockResult
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryClassDescriptor.constructor(BinaryClassDescriptor.java:981)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryClassDescriptor.<init>(BinaryClassDescriptor.java:267)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.registerPredefinedType(BinaryContext.java:1063)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.registerPredefinedType(BinaryContext.java:1048)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.binary.BinaryContext.<init>(BinaryContext.java:350)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.processors.cache.binary.CacheObjectBinaryProcessorImpl.start(CacheObjectBinaryProcessorImpl.java:208)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgniteKernal.startProcessor(IgniteKernal.java:1700)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgniteKernal.start(IgniteKernal.java:1013)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start0(IgnitionEx.java:2038)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start(IgnitionEx.java:1730)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start0(IgnitionEx.java:1158)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:678)
        at
deployment.StreamsApp.ear//org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:603)
        at
deployment.StreamsApp.ear//org.apache.ignite.Ignition.start(Ignition.java:323)
        at
deployment.StreamsApp.ear.Streams.jar//ru.sbrf.streams.cache.IgniteInitializer.init(IgniteInitializer.java:34)
        at
deployment.StreamsApp.ear.Streams.jar//ru.sbrf.streams.Main.startup(Main.java:23)
        at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
        at
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.base/java.lang.reflect.Method.invoke(Method.java:566)
        at
[email protected]//org.jboss.as.ee.component.ManagedReferenceLifecycleMethodInterceptor.processInvocation(ManagedReferenceLifecycleMethodInterceptor.java:96)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.delegateInterception(Jsr299BindingsInterceptor.java:79)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doLifecycleInterception(Jsr299BindingsInterceptor.java:126)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:112)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)
        at
[email protected]//org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeActivationInterceptor.java:81)
        at
[email protected]//org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:89)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInjectionInterceptor.processInvocation(WeldInjectionInterceptor.java:53)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.component.AroundConstructInterceptorFactory$1.processInvocation(AroundConstructInterceptorFactory.java:28)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.injection.WeldInterceptorInjectionInterceptor.processInvocation(WeldInterceptorInjectionInterceptor.java:56)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.weld.interceptors.Jsr299BindingsCreateInterceptor.processInvocation(Jsr299BindingsCreateInterceptor.java:111)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ee.component.NamespaceContextInterceptor.processInvocation(NamespaceContextInterceptor.java:50)
        at
[email protected]//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
        at
[email protected]//org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237)
        ... 28 more




--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to