Hi everybody,

 

Does anybody know how to solve the issue about EJB order deployment and EJB dependencies in JBoss 5?

We have a sole ear containing all the JARs of our application, each JAR containing a main EJB. EJBs connect among them with @EJB annotations.

 

We didn't have any problem deploying this structure in versions 4.2, but now, in version 5, JBoss apparently deploys only in alphabetical order without considering injection dependencies (the dependencies are declared, but alphabetical order deployment is not changed). This produces that JNDI names are not well exposed for those EJB's which have dependencies on other EJB's that are going to be deployed later. Consequently, when the system tries to inject/connect EJBs, it gives a sort of "UNKNOWN: Unresolved demands" error.

 

What could we be doing incorrectly? Any help or hint will be highly appreciated. Thanks.

 

The trace of the JBoss 5 startup with our EAR in the deploy directory is as follows:

 

11:28:45,373 INFO  [ServerImpl] Starting JBoss (Microcontainer)...

11:28:45,389 INFO  [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812041714)

11:28:45,389 INFO  [ServerImpl] Bootstrap URL: null

11:28:45,389 INFO  [ServerImpl] Home Dir: C:\JBoss5

11:28:45,389 INFO  [ServerImpl] Home URL: file:/C:/JBoss5/

11:28:45,389 INFO  [ServerImpl] Library URL: file:/C:/JBoss5/lib/

11:28:45,389 INFO  [ServerImpl] Patch URL: null

11:28:45,389 INFO  [ServerImpl] Common Base URL: file:/C:/JBoss5/common/

11:28:45,389 INFO  [ServerImpl] Common Library URL: file:/C:/JBoss5/common/lib/

11:28:45,389 INFO  [ServerImpl] Server Name: all

11:28:45,389 INFO  [ServerImpl] Server Base Dir: C:\JBoss5\server

11:28:45,389 INFO  [ServerImpl] Server Base URL: file:/C:/JBoss5/server/

11:28:45,389 INFO  [ServerImpl] Server Config URL: file:/C:/JBoss5/server/all/conf/

11:28:45,389 INFO  [ServerImpl] Server Home Dir: C:\JBoss5\server\all

11:28:45,389 INFO  [ServerImpl] Server Home URL: file:/C:/JBoss5/server/all/

11:28:45,389 INFO  [ServerImpl] Server Data Dir: C:\JBoss5\server\all\data

11:28:45,389 INFO  [ServerImpl] Server Library URL: file:/C:/JBoss5/server/all/lib/

11:28:45,389 INFO  [ServerImpl] Server Log Dir: C:\JBoss5\server\all\log

11:28:45,389 INFO  [ServerImpl] Server Native Dir: C:\JBoss5\server\all\tmp\native

11:28:45,389 INFO  [ServerImpl] Server Temp Dir: C:\JBoss5\server\all\tmp

11:28:45,389 INFO  [ServerImpl] Server Temp Deploy Dir: C:\JBoss5\server\all\tmp\deploy

11:28:48,732 INFO  [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/JBoss5/server/all/conf/bootstrap.xml

11:28:50,607 INFO  [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.IterableTimedVFSCache]

11:28:50,701 INFO  [VFSCacheFactory] Using VFSCache [IterableTimedVFSCache{lifetime=1800, resolution=60}]

11:28:51,982 INFO  [CopyMechanism] VFS temp dir: C:\JBoss5\server\all\tmp

11:28:51,982 INFO  [ZipEntryContext] VFS force nested jars copy-mode is enabled.

11:28:56,513 INFO  [ServerInfo] Java version: 1.5.0_09,Sun Microsystems Inc.

11:28:56,513 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.5.0_09-b03,Sun Microsystems Inc.

11:28:56,513 INFO  [ServerInfo] OS-System: Windows XP 5.1,x86

11:28:56,544 INFO  [JMXKernel] Legacy JMX core initialized

11:29:01,684 INFO  [ProfileServiceImpl] Loading profile: all from: org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@eeabe8(root=C:\JBoss5\server, K=org.jboss.profileservice.spi.ProfileK@b8292623[domain=default,server=default,name=all])

11:29:01,684 INFO  [ProfileImpl] Using repository:org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@eeabe8(root=C:\JBoss5\server, K=org.jboss.profileservice.spi.ProfileK@b8292623[domain=default,server=default,name=all])

11:29:01,684 INFO  [ProfileServiceImpl] Loaded profile: ProfileImpl@1335b86{K=org.jboss.profileservice.spi.ProfileK@b8292623[domain=default,server=default,name=all]}

11:29:36,384 INFO  [WebService] Using RMI server codebase: http://localhost:8083/

11:29:53,070 INFO  [NativeServerConfig] JBoss Web Services - Stack Native Core

11:29:53,070 INFO  [NativeServerConfig] 3.0.4.SP1

11:30:37,818 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@31533740{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/CG.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@31533740{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/CG.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@28889665{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/Wire.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@28889665{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/Wire.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@15976719{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WireM.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@15976719{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WireM.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@18157796{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WirePS.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@18157796{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WirePS.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@529503{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WireS.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@529503{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WireS.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@7444262{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WireMST.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@7444262{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WireMST.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@24798450{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WireT.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@24798450{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/WireT.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@7952623{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/Core.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@7952623{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/Core.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@12438732{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/CoreMMR.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@12438732{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/CoreMMR.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@13665339{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/Database.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@13665339{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/Database.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@26830576{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/SMK.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@26830576{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/SMK.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@3484646{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/MF.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@3484646{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/MF.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@13964397{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/NE.jar/}

11:30:37,865 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@13964397{vfsfile:/C:/JBoss5/server/all/deploy/MyApplication.ear/NE.jar/}

11:31:05,504 INFO  [CorbaNamingService] CORBA Naming Started

11:31:32,691 INFO  [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://localhost/jndi/rmi://localhost:1090/jmxconnector

11:31:34,581 INFO  [MailService] Mail Service bound to java:/Mail

11:31:37,347 INFO  [SnmpAgentService] SNMP agent going active

11:31:41,753 INFO  [DefaultPartition] Initializing partition DefaultPartition

11:31:42,175 INFO  [PlatfoMMRBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.

11:31:42,440 INFO  [STDOUT]

-------------------------------------------------------

GMS: address is 127.0.0.1:1858

-------------------------------------------------------

11:31:42,440 INFO  [STDOUT]

-------------------------------------------------------

GMS: address is 127.0.0.1:1858

-------------------------------------------------------

11:31:44,487 INFO  [RPCManagerImpl] Received new cluster view: [127.0.0.1:1858|0] [127.0.0.1:1858]

11:31:44,518 INFO  [DefaultPartition] Number of cluster members: 1

11:31:44,518 INFO  [DefaultPartition] Other members: 0

11:31:44,534 INFO  [RPCManagerImpl] Cache local address is 127.0.0.1:1858

11:31:44,565 INFO  [ComponentRegistry] JBoss Cache version: JBossCache 'Naga' 3.0.1.GA

11:31:44,565 INFO  [DefaultPartition] Fetching serviceState (will wait for 30000 milliseconds):

11:31:44,565 INFO  [DefaultPartition] State could not be retrieved (we are the first member in group)

11:31:44,753 INFO  [HANamingService] Started HAJNDI bootstrap; jnpPort=1100, backlog=50, bindAddress=localhost/127.0.0.1

11:31:44,768 INFO  [DetachedHANamingService$AutomaticDiscovery] Listening on /127.0.0.1:1102, group=230.0.0.4, HA-JNDI address=127.0.0.1:1100

11:31:46,675 INFO  [UnifiedInvokerHA] Service name is jboss:service=invoker,type=unifiedha

11:31:49,049 WARN  [JBossASSecurityMetadataStore] WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.

11:31:49,128 WARN  [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent

11:31:49,768 INFO  [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.

11:31:49,768 INFO  [TransactionManagerService] Setting up property manager MBean and JMX layer

11:31:51,128 INFO  [TransactionManagerService] Initializing recovery manager

11:31:51,893 INFO  [TransactionManagerService] Recovery manager configured

11:31:51,893 INFO  [TransactionManagerService] Binding TransactionManager JNDI Reference

11:31:52,362 INFO  [TransactionManagerService] Starting transaction recovery manager

11:31:55,815 INFO  [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009

11:31:56,455 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on http-443

11:31:56,455 INFO  [StandardService] Starting service jboss.web

11:31:56,455 INFO  [StandardEngine] Starting Servlet Engine: JBoss Web/2.1.1.GA

11:31:56,565 INFO  [Catalina] Server startup in 928 ms

11:31:56,596 INFO  [TomcatDeployment] deploy, ctxPath=/juddi, vfsUrl=juddi-service.sar/juddi.war

11:31:59,221 INFO  [RegistryServlet] Loading jUDDI configuration.

11:31:59,252 INFO  [RegistryServlet] Resources loaded from: /WEB-INF/juddi.properties

11:31:59,252 INFO  [RegistryServlet] Initializing jUDDI components.

11:31:59,502 INFO  [TomcatDeployment] deploy, ctxPath=/invoker, vfsUrl=httpha-invoker.sar/invoker.war

11:31:59,674 INFO  [TomcatDeployment] deploy, ctxPath=/web-console, vfsUrl=management/console-mgr.sar/web-console.war

11:32:02,018 INFO  [TomcatDeployment] deploy, ctxPath=/jbossws, vfsUrl=jbossws.sar/jbossws-management.war

11:32:02,533 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss5/server/all/deploy/jboss-local-jdbc.rar/META-INF/ra.xml

11:32:02,690 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss5/server/all/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml

11:32:02,877 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss5/server/all/deploy/jms-ra.rar/META-INF/ra.xml

11:32:02,986 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss5/server/all/deploy/mail-ra.rar/META-INF/ra.xml

11:32:03,158 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss5/server/all/deploy/quartz-ra.rar/META-INF/ra.xml

11:32:03,690 INFO  [SimpleThreadPool] Job execution threads will use class loader of thread: main

11:32:03,736 INFO  [QuartzScheduler] Quartz Scheduler v.1.5.2 created.

11:32:03,752 INFO  [RAMJobStore] RAMJobStore initialized.

11:32:03,752 INFO  [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'

11:32:03,752 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.5.2

11:32:03,752 INFO  [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.

11:32:05,736 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'

11:32:09,705 INFO  [SimpleThreadPool] Job execution threads will use class loader of thread: main

11:32:09,705 INFO  [QuartzScheduler] Quartz Scheduler v.1.5.2 created.

11:32:09,705 INFO  [JobStoreCMT] Using db table-based data access locking (synchronization).

11:32:09,721 INFO  [JobStoreCMT] Removed 0 Volatile Trigger(s).

11:32:09,721 INFO  [JobStoreCMT] Removed 0 Volatile Job(s).

11:32:09,721 INFO  [JobStoreCMT] JobStoreCMT initialized.

11:32:09,721 INFO  [StdSchedulerFactory] Quartz scheduler 'JBossEJB3QuartzScheduler' initialized from an externally provided properties instance.

11:32:09,721 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.5.2

11:32:09,721 INFO  [JobStoreCMT] Freed 0 triggers from 'acquired' / 'blocked' state.

11:32:09,736 INFO  [JobStoreCMT] Recovering 0 jobs that were in-progress at the time of the last shut-down.

11:32:09,736 INFO  [JobStoreCMT] Recovery complete.

11:32:09,736 INFO  [JobStoreCMT] Removed 0 'complete' triggers.

11:32:09,736 INFO  [JobStoreCMT] Removed 0 stale fired job entries.

11:32:09,736 INFO  [QuartzScheduler] Scheduler JBossEJB3QuartzScheduler_$_NON_CLUSTERED started.

11:32:10,158 INFO  [ServerPeer] JBoss Messaging 1.4.1.GA server [0] started

11:32:10,658 INFO  [STDOUT]

-------------------------------------------------------

GMS: address is 127.0.0.1:1858

-------------------------------------------------------

11:32:12,720 INFO  [GroupMember] org.jboss.messaging.core.impl.postoffice.GroupMember$ControlMembershipListener@181b9f7 got new view [127.0.0.1:1858|0] [127.0.0.1:1858], old view is null

11:32:12,720 INFO  [GroupMember] I am (127.0.0.1:1858)

11:32:12,720 INFO  [GroupMember] New Members : 1 ([127.0.0.1:1858])

11:32:12,720 INFO  [GroupMember] All Members : 1 ([127.0.0.1:1858])

11:32:13,424 INFO  [STDOUT]

-------------------------------------------------------

GMS: address is 127.0.0.1:7900

-------------------------------------------------------

11:32:19,470 INFO  [ConnectionFactory] Connector bisocket://localhost:4457 has leasing enabled, lease period 10000 milliseconds

11:32:19,470 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@13d7dc3 started

11:32:19,533 INFO  [ConnectionFactory] Connector bisocket://localhost:4457 has leasing enabled, lease period 10000 milliseconds

11:32:19,533 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@7dac47 started

11:32:19,751 INFO  [QueueService] Queue[/queue/notification.406783813455747323] started, fullSize=200000, pageSize=2000, downCacheSize=2000

11:32:19,751 INFO  [QueueService] Queue[/queue/notification.0] started, fullSize=200000, pageSize=2000, downCacheSize=2000

11:32:19,751 INFO  [QueueService] Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000

11:32:19,751 INFO  [QueueService] Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000

11:32:19,751 INFO  [QueueService] Queue[/queue/notification.410812341561208067] started, fullSize=200000, pageSize=2000, downCacheSize=2000

11:32:19,923 INFO  [ConnectionFactory] Connector bisocket://localhost:4457 has leasing enabled, lease period 10000 milliseconds

11:32:19,923 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@63921a started

11:32:22,126 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'

11:32:22,345 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=OracleDS' to JNDI name 'java:OracleDS'

11:32:22,376 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=OracleDSSMK' to JNDI name 'java:OracleDSSMK'

11:32:22,689 WARN  [TransactionManagerService] XAExceptionFormatters are not supported by the JBossTS Transaction Service - this warning can safely be ignored

11:32:22,861 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=XAOracleDS' to JNDI name 'java:XAOracleDS'

11:32:22,908 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=XAOracleDSSMK' to JNDI name 'java:XAOracleDSSMK'

11:32:23,095 INFO  [TomcatDeployment] deploy, ctxPath=/, vfsUrl=ROOT.war

11:32:25,657 INFO  [TomcatDeployment] deploy, ctxPath=/jmx-console, vfsUrl=jmx-console.war

11:32:51,281 INFO  [JBossASKernel] Created KernelDeployment for: CG.jar

11:32:51,891 INFO  [JBossASKernel] installing bean: jboss.j2ee:ear=MyApplication.ear,jar=CG.jar,name=fooBean,service=EJB3

11:32:51,891 INFO  [JBossASKernel]   with dependencies:

11:32:51,891 INFO  [JBossASKernel]   and demands:

11:32:51,891 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService

11:32:51,891 INFO  [JBossASKernel]   and supplies:

11:32:51,891 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.MMR.cg.fooRemote

11:32:51,891 INFO  [JBossASKernel]      jndi:MyApplication/CoreMMR/v1.0/fooBean

11:32:51,891 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote

11:32:51,891 INFO  [JBossASKernel]      Class:foo.MMR.cg.fooRemote

11:32:51,891 INFO  [JBossASKernel] Added bean(jboss.j2ee:ear=MyApplication.ear,jar=CG.jar,name=fooBean,service=EJB3) to KernelDeployment of: CG.jar

11:33:07,906 INFO  [JBossASKernel] Created KernelDeployment for: Wire.jar

11:33:07,906 INFO  [JBossASKernel] installing bean: jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3

11:33:07,906 INFO  [JBossASKernel]   with dependencies:

11:33:07,906 INFO  [JBossASKernel]   and demands:

11:33:07,906 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService

11:33:07,906 INFO  [JBossASKernel]   and supplies:

11:33:07,906 INFO  [JBossASKernel]      Class:foo.connector.services.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/Core/v1.0/fooBean

11:33:07,906 INFO  [JBossASKernel] Added bean(jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3) to KernelDeployment of: Wire.jar

11:33:07,906 INFO  [JBossASKernel] installing bean: jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3

11:33:07,906 INFO  [JBossASKernel]   with dependencies:

11:33:07,906 INFO  [JBossASKernel]   and demands:

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote

11:33:07,906 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote

11:33:07,906 INFO  [JBossASKernel]   and supplies:

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/local

11:33:07,906 INFO  [JBossASKernel]      Class:foo.connector.services.WebServicesLocal

11:33:07,906 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote

11:33:07,906 INFO  [JBossASKernel] Added bean(jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3) to KernelDeployment of: Wire.jar

 

And many other EJB's are deployed as well: I cut here some text so as to limit this post.

The JBoss5 boot trace continues:

 

11:33:41,811 INFO  [JBossASKernel] Created KernelDeployment for: NE.jar

11:33:41,811 INFO  [JBossASKernel] installing bean: jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3

11:33:41,811 INFO  [JBossASKernel]   with dependencies:

11:33:41,811 INFO  [JBossASKernel]   and demands:

11:33:41,811 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService

11:33:41,811 INFO  [JBossASKernel]   and supplies:

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/Core/v1.0/fooBean

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote-foo.notification.fooRemote

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote

11:33:41,811 INFO  [JBossASKernel]      Class:foo.notification.fooRemote

11:33:41,811 INFO  [JBossASKernel] Added bean(jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3) to KernelDeployment of: NE.jar

11:33:41,811 INFO  [JBossASKernel] installing bean: jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3

11:33:41,811 INFO  [JBossASKernel]   with dependencies:

11:33:41,811 INFO  [JBossASKernel]   and demands:

11:33:41,811 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService

11:33:41,811 INFO  [JBossASKernel]   and supplies:

11:33:41,811 INFO  [JBossASKernel]      Class:foo.notification.SMSexNotifierLocal

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/local-foo.notification.SMSexNotifierLocal

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote

11:33:41,811 INFO  [JBossASKernel]      Class:foo.notification.SMSNotifierLocal

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/local-foo.notification.SMSNotifierLocal

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/local

11:33:41,811 INFO  [JBossASKernel] Added bean(jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3) to KernelDeployment of: NE.jar

11:33:41,811 INFO  [JBossASKernel] installing bean: jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3

11:33:41,811 INFO  [JBossASKernel]   with dependencies:

11:33:41,811 INFO  [JBossASKernel]   and demands:

11:33:41,811 INFO  [JBossASKernel]      jboss.ejb:service=EJBTimerService

11:33:41,811 INFO  [JBossASKernel]   and supplies:

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/local

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/remote

11:33:41,811 INFO  [JBossASKernel]      Class:foo.notification.SMSNotifierLocal

11:33:41,811 INFO  [JBossASKernel]      jndi:MyApplication/fooBean/local-foo.notification.SMSNotifierLocal

11:33:41,811 INFO  [JBossASKernel] Added bean(jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3) to KernelDeployment of: NE.jar

11:33:44,623 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=CG.jar,name=fooBean,service=EJB3

11:33:44,983 INFO  [EJBContainer] STARTED EJB: foo.MMR.cg.CommandFactoryBean ejbName: CommandFactoryBean

11:33:45,920 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/CoreMMR/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.MMR.cg.fooRemote - EJB3.x fooRemote Business Interface

 

11:33:47,639 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3

11:33:47,639 INFO  [EJBContainer] STARTED EJB: foo.connector.services.ConnectorBean ejbName: ConnectorBean

11:33:47,717 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.connector.services.fooRemote - EJB3.x fooRemote Business Interface

 

11:33:48,045 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3

11:33:48,045 INFO  [EJBContainer] STARTED EJB: foo.MMR.coreMMR.mfdf.CoreMMRMfdfProvisioningBean ejbName: CoreMMRMfdfProvisioningBean

11:33:48,107 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/CoreMMR/v1.0/fooBean - EJB3.x Default Local Business Interface

            MyApplication/fooBean/local-foo.MMR.coreMMR.mfdf.CoreMMRMfdfProvisioningLocal - EJB3.x Local Business Interface

 

11:33:48,186 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3

11:33:48,186 INFO  [EJBContainer] STARTED EJB: foo.MMR.coreMMR.SessionBean ejbName: SessionBean

11:33:48,232 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/CoreMMR/v1.0/fooBean - EJB3.x Default Local Business Interface

            MyApplication/fooBean/local-foo.MMR.coreMMR.SessionLocal - EJB3.x Local Business Interface

 

11:33:48,857 INFO  [PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=MyApplication.ear/Database.jar#MSTDB

11:33:50,842 INFO  [Version] Hibernate Annotations 3.4.0.GA

11:33:51,248 INFO  [Environment] Hibernate 3.3.1.GA

11:33:52,076 INFO  [Environment] hibernate.properties not found

11:33:52,092 INFO  [Environment] Bytecode provider name : javassist

11:33:52,170 INFO  [Environment] using JDK 1.4 java.sql.Timestamp handling

11:33:52,873 INFO  [Version] Hibernate Commons Annotations 3.1.0.GA

11:33:52,904 INFO  [Version] Hibernate EntityManager 3.4.0.GA

11:33:53,263 WARN  [Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.

11:33:53,545 INFO  [Configuration] Reading mappings from resource : META-INF/orm.xml

11:33:53,701 INFO  [Ejb3Configuration] [PersistenceUnit: MSTDB]  META-INF/orm.xml found

11:33:53,967 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.tEntity

11:33:54,107 INFO  [EntityBinder] Bind entity foo.db.entity.tEntity on table S_O

11:33:55,545 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.tEntity

11:33:55,560 INFO  [EntityBinder] Bind entity foo.db.entity.tEntity on table jc_S_O

11:33:55,685 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.nEntity

11:33:55,685 INFO  [EntityBinder] Bind entity foo.db.entity.nEntity on table A

11:33:55,701 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.nEntity

11:33:55,701 INFO  [EntityBinder] Bind entity foo.db.entity.nEntity on table JC_A

11:33:55,716 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.lEntity

11:33:55,716 INFO  [EntityBinder] Bind entity foo.db.entity.lEntity on table P_M

11:33:55,748 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.rEntity

11:33:55,748 INFO  [EntityBinder] Bind entity foo.db.entity.rEntity on table S_P

11:33:55,748 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.cEntity

11:33:55,748 INFO  [EntityBinder] Bind entity foo.db.entity.cEntity on table C

11:33:55,763 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.aEntity

11:33:55,763 INFO  [EntityBinder] Bind entity foo.db.entity.aEntity on table U_D

11:33:55,763 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.aEntity

11:33:55,763 INFO  [EntityBinder] Bind entity foo.db.entity.aEntity on table jc_U_D

11:33:55,763 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.tEntity

11:33:55,763 INFO  [EntityBinder] Bind entity foo.db.entity.tEntity on table MF_c_S_O

11:33:55,763 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.aEntity

11:33:55,763 INFO  [EntityBinder] Bind entity foo.db.entity.aEntity on table MF_df_U_D

11:33:55,763 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.dEntity

11:33:55,763 INFO  [EntityBinder] Bind entity foo.db.entity.dEntity on table P_B

11:33:55,779 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.rEntity

11:33:55,779 INFO  [EntityBinder] Bind entity foo.db.entity.rEntity on table EU

11:33:55,779 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.tEntity

11:33:55,779 INFO  [EntityBinder] Bind entity foo.db.entity.tEntity on table MF_df_S_O

11:33:55,795 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.nEntity

11:33:55,795 INFO  [EntityBinder] Bind entity foo.db.entity.nEntity on table O

11:33:55,795 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.nEntity

11:33:55,795 INFO  [EntityBinder] Bind entity foo.db.entity.nEntity on table MF_df_A

11:33:55,795 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.tEntity

11:33:55,795 INFO  [EntityBinder] Bind entity foo.db.entity.tEntity on table T_M

11:33:55,795 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.yEntity

11:33:55,795 INFO  [EntityBinder] Bind entity foo.db.entity.yEntity on table S_H

11:33:55,810 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.nEntity

11:33:55,810 INFO  [EntityBinder] Bind entity foo.db.entity.nEntity on table MF_c_A

11:33:55,810 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.aEntity

11:33:55,810 INFO  [EntityBinder] Bind entity foo.db.entity.aEntity on table MF_c_U_D

11:33:55,810 INFO  [AnnotationBinder] Binding entity from annotated class: foo.db.entity.rEntity

11:33:55,810 INFO  [EntityBinder] Bind entity foo.db.entity.rEntity on table S_M

11:33:55,904 INFO  [Version] Hibernate Validator 3.1.0.GA

11:33:56,201 INFO  [HibernateSearchEventListenerRegister] Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.

11:33:56,654 INFO  [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider

11:33:56,670 INFO  [InjectedDataSourceConnectionProvider] Using provided datasource

11:34:07,466 INFO  [SettingsFactory] RDBMS: Oracle, version: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

11:34:07,466 INFO  [SettingsFactory] JDBC driver: Oracle JDBC driver, version: 10.2.0.1.0XE

11:34:07,732 INFO  [Dialect] Using dialect: org.hibernate.dialect.Oracle10gDialect

11:34:07,747 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory

11:34:07,763 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup

11:34:07,763 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup

11:34:07,763 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled

11:34:07,763 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled

11:34:07,763 INFO  [SettingsFactory] JDBC batch size: 15

11:34:07,763 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled

11:34:07,763 INFO  [SettingsFactory] Scrollable result sets: enabled

11:34:07,763 INFO  [SettingsFactory] JDBC3 getGeneratedKs(): disabled

11:34:07,763 INFO  [SettingsFactory] Connection release mode: auto

11:34:07,779 INFO  [SettingsFactory] Default batch fetch size: 1

11:34:07,779 INFO  [SettingsFactory] Generate SQL with comments: disabled

11:34:07,779 INFO  [SettingsFactory] Order SQL updates by primary K: disabled

11:34:07,779 INFO  [SettingsFactory] Order SQL inserts for batching: disabled

11:34:07,779 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory

11:34:07,794 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory

11:34:07,794 INFO  [SettingsFactory] Query language substitutions: {}

11:34:07,794 INFO  [SettingsFactory] JPA-QL strict compliance: enabled

11:34:07,794 INFO  [SettingsFactory] Second-level cache: enabled

11:34:07,794 INFO  [SettingsFactory] Query cache: disabled

11:34:07,825 INFO  [SettingsFactory] Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge

11:34:07,825 INFO  [RegionFactoryCacheProviderBridge] Cache provider: org.hibernate.cache.HashtableCacheProvider

11:34:07,825 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled

11:34:07,825 INFO  [SettingsFactory] Cache region prefix: persistence.unit:unitName=MyApplication.ear/Database.jar#MSTDB

11:34:07,825 INFO  [SettingsFactory] Structured second-level cache entries: disabled

11:34:07,857 INFO  [SettingsFactory] Statistics: disabled

11:34:07,857 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled

11:34:07,857 INFO  [SettingsFactory] Default entity-mode: pojo

11:34:07,857 INFO  [SettingsFactory] Named query checking : enabled

11:34:08,075 INFO  [SessionFactoryImpl] building session factory

11:34:09,060 INFO  [SessionFactoryObjectFactory] Factory name: persistence.unit:unitName=MyApplication.ear/Database.jar#MSTDB

11:34:09,075 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}

11:34:09,107 INFO  [NamingHelper] Creating subcontext: persistence.unit:unitName=MyApplication.ear

11:34:09,107 INFO  [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.unit:unitName=MyApplication.ear/Database.jar#MSTDB

11:34:09,107 WARN  [SessionFactoryObjectFactory] InitialContext did not implement EventContext

11:34:09,107 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}

11:34:09,435 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=Database.jar,name=fooBean,service=EJB3

11:34:09,450 INFO  [EJBContainer] STARTED EJB: foo.db.dbaccess.DBrBean ejbName: DBrBean

11:34:09,466 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=Database.jar,name=fooBean,service=EJB3

11:34:09,482 INFO  [EJBContainer] STARTED EJB: foo.db.dbaccess.DBtBean ejbName: DBtBean

11:34:09,513 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=Database.jar,name=fooBean,service=EJB3

11:34:09,513 INFO  [EJBContainer] STARTED EJB: foo.db.dbaccess.DBnBean ejbName: DBnBean

11:34:09,544 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=Database.jar,name=fooBean,service=EJB3

11:34:09,544 INFO  [EJBContainer] STARTED EJB: foo.db.dbaccess.DBnBean ejbName: DBnBean

11:34:09,591 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=Database.jar,name=fooBean,service=EJB3

11:34:09,591 INFO  [EJBContainer] STARTED EJB: foo.db.dbaccess.DBrBean ejbName: DBrBean

11:34:09,700 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.db.dbaccess.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:10,247 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.db.dbaccess.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:10,325 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.db.dbaccess.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:10,450 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=Database.jar,name=fooBean,service=EJB3

11:34:10,450 INFO  [EJBContainer] STARTED EJB: foo.db.dbaccess.DBgBean ejbName: DBgBean

11:34:10,575 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.db.dbaccess.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:10,638 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.db.dbaccess.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:10,700 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.db.dbaccess.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:10,747 INFO  [PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=MyApplication.ear/SMK.jar#SMKDB

11:34:10,857 WARN  [Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.

11:34:10,857 INFO  [Configuration] Reading mappings from resource : META-INF/orm.xml

11:34:10,888 INFO  [Ejb3Configuration] [PersistenceUnit: SMKDB]  META-INF/orm.xml found

11:34:10,888 INFO  [AnnotationBinder] Binding entity from annotated class: foo.SMK.entity.tEntity

11:34:10,888 INFO  [EntityBinder] Bind entity foo.SMK.entity.tEntity on table KSET

11:34:10,903 INFO  [AnnotationBinder] Binding entity from annotated class: foo.SMK.entity.yEntity

11:34:10,903 INFO  [EntityBinder] Bind entity foo.SMK.entity.yEntity on table K

11:34:10,919 INFO  [AnnotationBinder] Binding entity from annotated class: foo.SMK.entity.yEntity

11:34:10,919 INFO  [EntityBinder] Bind entity foo.SMK.entity.yEntity on table SEID_KS

11:34:10,935 INFO  [HibernateSearchEventListenerRegister] Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.

11:34:10,997 INFO  [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider

11:34:10,997 INFO  [InjectedDataSourceConnectionProvider] Using provided datasource

11:34:11,091 INFO  [SettingsFactory] RDBMS: Oracle, version: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

11:34:11,091 INFO  [SettingsFactory] JDBC driver: Oracle JDBC driver, version: 10.2.0.1.0XE

11:34:11,091 INFO  [Dialect] Using dialect: org.hibernate.dialect.Oracle10gDialect

11:34:11,091 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory

11:34:11,091 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup

11:34:11,091 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup

11:34:11,091 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled

11:34:11,091 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled

11:34:11,091 INFO  [SettingsFactory] JDBC batch size: 15

11:34:11,091 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled

11:34:11,091 INFO  [SettingsFactory] Scrollable result sets: enabled

11:34:11,091 INFO  [SettingsFactory] JDBC3 getGeneratedKs(): disabled

11:34:11,091 INFO  [SettingsFactory] Connection release mode: auto

11:34:11,091 INFO  [SettingsFactory] Default batch fetch size: 1

11:34:11,091 INFO  [SettingsFactory] Generate SQL with comments: disabled

11:34:11,091 INFO  [SettingsFactory] Order SQL updates by primary K: disabled

11:34:11,091 INFO  [SettingsFactory] Order SQL inserts for batching: disabled

11:34:11,091 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory

11:34:11,091 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory

11:34:11,091 INFO  [SettingsFactory] Query language substitutions: {}

11:34:11,091 INFO  [SettingsFactory] JPA-QL strict compliance: enabled

11:34:11,091 INFO  [SettingsFactory] Second-level cache: enabled

11:34:11,091 INFO  [SettingsFactory] Query cache: disabled

11:34:11,091 INFO  [SettingsFactory] Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge

11:34:11,091 INFO  [RegionFactoryCacheProviderBridge] Cache provider: org.hibernate.cache.HashtableCacheProvider

11:34:11,091 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled

11:34:11,091 INFO  [SettingsFactory] Cache region prefix: persistence.unit:unitName=MyApplication.ear/SMK.jar#SMKDB

11:34:11,091 INFO  [SettingsFactory] Structured second-level cache entries: disabled

11:34:11,091 INFO  [SettingsFactory] Statistics: disabled

11:34:11,091 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled

11:34:11,091 INFO  [SettingsFactory] Default entity-mode: pojo

11:34:11,091 INFO  [SettingsFactory] Named query checking : enabled

11:34:11,169 INFO  [SessionFactoryImpl] building session factory

11:34:11,185 INFO  [SessionFactoryObjectFactory] Factory name: persistence.unit:unitName=MyApplication.ear/SMK.jar#SMKDB

11:34:11,185 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}

11:34:11,185 INFO  [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.unit:unitName=MyApplication.ear/SMK.jar#SMKDB

11:34:11,185 WARN  [SessionFactoryObjectFactory] InitialContext did not implement EventContext

11:34:11,185 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}

11:34:11,247 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=SMK.jar,name=fooBean,service=EJB3

11:34:11,247 INFO  [EJBContainer] STARTED EJB: foo.SMK.dbaccess.DBsBean ejbName: DBsBean

11:34:11,341 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/CoreMMR/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.SMK.dbaccess.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:11,419 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=SMK.jar,name=fooBean,service=EJB3

11:34:11,419 INFO  [EJBContainer] STARTED EJB: foo.SMK.SMKServiceBean ejbName: SMKServiceBean

11:34:11,497 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/CoreMMR/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.SMK.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:11,607 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=MF.jar,name=fooBean,service=EJB3

11:34:11,607 INFO  [EJBContainer] STARTED EJB: foo.MMR.MF.MFBean ejbName: MFBean

11:34:11,685 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/CoreMMR/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.MMR.MF.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:11,778 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3

11:34:11,778 INFO  [EJBContainer] STARTED EJB: foo.notification.NotifierBean ejbName: NotifierBean

11:34:11,856 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default fooRemote Business Interface

            MyApplication/fooBean/remote-foo.notification.fooRemote - EJB3.x fooRemote Business Interface

 

11:34:11,950 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3

11:34:11,950 INFO  [EJBContainer] STARTED EJB: foo.notification.SMSexNotifierBean ejbName: SMSexNotifierBean

11:34:11,981 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default Local Business Interface

            MyApplication/fooBean/local-foo.notification.SMSNotifierLocal - EJB3.x Local Business Interface

            MyApplication/fooBean/local-foo.notification.SMSexNotifierLocal - EJB3.x Local Business Interface

 

11:34:12,060 INFO  [SessionSpecContainer] Starting jboss.j2ee:ear=MyApplication.ear,jar=NE.jar,name=fooBean,service=EJB3

11:34:12,060 INFO  [EJBContainer] STARTED EJB: foo.notification.SMSNotifierBean ejbName: SMSNotifierBean

11:34:12,091 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

 

            MyApplication/Core/v1.0/fooBean - EJB3.x Default Local Business Interface

            MyApplication/fooBean/local-foo.notification.SMSNotifierLocal - EJB3.x Local Business Interface

 

11:34:14,247 TRACE [LOG_DEBUG_ACM] [] [ACM] : NOTIFICATION_STARTED

11:34:14,278 TRACE [LOG_DEBUG_CONNECTOR] [] [CONNECTOR] : NOTIFICATION_STARTED

11:34:14,341 TRACE [LOG_DEBUG_CORE] [] [CORE] : NOTIFICATION_STARTED

11:34:14,356 TRACE [LOG_DEBUG_CORE_MMR] [] [CORE_MMR] : NOTIFICATION_STARTED

11:34:14,388 TRACE [LOG_DEBUG_N_E] [] [N_E] : NOTIFICATION_STARTED

11:34:14,497 INFO  [TomcatDeployment] deploy, ctxPath=/Axis2, vfsUrl=MyApplication.ear/Axis2.war

11:34:19,137 INFO  [ModuleDeployer] Deploying module: addressing-1.4 - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/modules/addressing-1.4.mar

11:34:19,356 INFO  [ModuleDeployer] Deploying module: metadataExchange-1.4 - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/modules/mex-1.4.mar

11:34:19,403 INFO  [ModuleDeployer] Deploying module: ping-1.4 - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/modules/ping-1.4.mar

11:34:19,512 INFO  [ModuleDeployer] Deploying module: script-1.4 - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/modules/scripting-1.4.mar

11:34:19,559 INFO  [ModuleDeployer] Deploying module: smtpfault - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/modules/smtpfault.mar

11:34:19,700 INFO  [ModuleDeployer] Deploying module: soapmonitor-1.4 - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/modules/soapmonitor-1.4.mar

11:34:19,762 INFO  [ModuleDeployer] Deploying module: validate - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/modules/validate.mar

11:34:21,965 INFO  [ServiceDeployer] Deploying Web service: pol.aar - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/services/pol.aar/

11:34:22,169 INFO  [ServiceDeployer] Deploying Web service: SP.aar - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/services/SP.aar/

11:34:22,403 INFO  [ServiceDeployer] Deploying Web service: st.aar - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/services/st.aar/

11:34:22,762 INFO  [ServiceDeployer] Deploying Web service: MSTAdmin.aar - file:/C:/JBoss5/server/all/deploy/MyApplication.ear/Axis2.war/WEB-INF/services/MSTAdmin.aar/

11:34:22,840 INFO  [TomcatDeployment] deploy, ctxPath=/CPM, vfsUrl=MyApplication.ear/CPM.war

11:34:25,184 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):

 

*** CONTEXTS MISSING DEPENDENCIES: Name -> Dependency{Required State:Actual State}

 

jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=WireM.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireM.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireM.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=WirePS.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WirePS.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WirePS.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=WireS.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireS.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireS.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=WireSKM.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireSKM.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireSKM.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=WireT.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireT.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.MMR.coreMMR.fooRemote' **}

 -> <UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3>{Described:** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **}

 

 

*** CONTEXTS IN ERROR: Name -> Error

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.MMR.coreMMR.fooRemote' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireT.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=CoreMMR.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Wire.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WirePS.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireM.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireS.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=Core.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.core.main.fooRemote' **

 

<UNKNOWN jboss.j2ee:ear=MyApplication.ear,jar=WireSKM.jar,name=fooBean,service=EJB3> -> ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/local-foo.connector.services.WebServicesLocal' ** | ** UNRESOLVED Demands 'jndi:MyApplication/fooBean/remote-foo.connector.services.fooRemote' **

 

11:34:25,325 INFO  [AjpProtocol] Starting Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009

11:34:25,403 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on http-443

11:34:25,418 INFO  [ServerImpl] JBoss (Microcontainer) [5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812041714)] Started in 5m:39s:998ms

 

Regards,

Luis