[jboss-user] [EJB 3.0] - Re: Binding / JNDI / EJB

pbaker01 do-not-reply at jboss.com
Sun Dec 21 09:20:22 EST 2008


Hi Jaikiran,

Thanks so much for looking in to this!!!

I have changed both ejb-jar.xml and jboss.xml  to use Version 3.0 xsds.  See below.  

A number of errors are now generated in the console start-up. 

What I am really after, at this point in development, is exposing the start/stopDelivery on my MDB. 
See post: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=147390
 
Using the ejb-jar with the 2.1 ejb specfication tags, I am able to display the MDB via JMX (JBoss 5.0) with the start/stopDelivery methods exposed, except no JNDI remote names, so the client cannot access.. 

Per your suggestion here is my ejb-jar.xml and jboss.xml

I beleive that it is a simple config problem on my part... I just can't find it.  I will probably fall back to JBoss 4.2.3 if I can't get some resolution to this problem and the start/stopDelivery problem.

Thanks again, for looking into this!  PB

ejb-jar.xml

<?xml version="1.0"?>
  | 
  | <ejb-jar xmlns="http://java.sun.com/xml/ns/javaee"
  | 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  | 	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  |                             http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd"
  | 	version="3.0">
  | 	<enterprise-beans>
  | 		<message-driven>
  | 			<ejb-name>SSMListener</ejb-name>
  | 			<ejb-class>com.sita.wab.mdb.ssim.SSMListener</ejb-class>
  | 			<transaction-type>Container</transaction-type>
  | 		</message-driven>
  | 
  | 		<session>
  | 			<ejb-name>SubscriberEjbBean</ejb-name>
  | 			<business-remote>
  | 				com.sita.wab.ejb.subscriber.SubscriberEjbRemote
  | 			</business-remote>
  | 			<ejb-class>
  | 				com.sita.wab.ejb.subscriber.SubscriberEjbBean
  | 			</ejb-class>
  | 			<session-type>Stateless</session-type>
  | 			<transaction-type>Container</transaction-type>
  | 		</session>
  | 
  | 		<session>
  | 			<ejb-name>AirlineEjbBean</ejb-name>
  | 			<business-remote>
  | 				com.sita.wab.ejb.airline.AirlineEjbRemote
  | 			</business-remote>
  | 			<ejb-class>
  | 				com.sita.wab.ejb.airline.AirlineEjbBean
  | 			</ejb-class>
  | 			<session-type>Stateless</session-type>
  | 			<transaction-type>Container</transaction-type>
  | 		</session>
  | 
  | 		<session>
  | 			<ejb-name>SsimEjbBean</ejb-name>
  | 			<business-remote>
  | 				com.sita.wab.ejb.ssim.SsimEjbRemote
  | 			</business-remote>
  | 			<ejb-class>com.sita.wab.ejb.ssim.SsimEjbBean</ejb-class>
  | 			<session-type>Stateless</session-type>
  | 			<transaction-type>Container</transaction-type>
  | 		</session>
  | 
  | 
  | 	</enterprise-beans>
  | 
  | 	<assembly-descriptor>
  | 		<container-transaction>
  | 			<method>
  | 				<ejb-name>SSMListener</ejb-name>
  | 				<method-name>onMessage</method-name>
  | 			</method>
  | 			<trans-attribute>Required</trans-attribute>
  | 		</container-transaction>
  | 	</assembly-descriptor>
  | </ejb-jar>

jboss.xml
<?xml version="1.0" ?>
  | <jboss
  |         xmlns="http://java.sun.com/xml/ns/javaee"
  |         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  |         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  |                             http://www.jboss.org/j2ee/schema/jboss_5_0.xsd"
  |         version="3.0">
  |     <security-domain></security-domain> 
  |     <enterprise-beans>
  |         <message-driven>
  |             <ejb-name>SSMListener</ejb-name>
  |             <destination-jndi-name>
  |                 queue/SSMQueue
  |             </destination-jndi-name>
  |         </message-driven>
  | 
  |         <session>
  |             <ejb-name>SubscriberEjbBean</ejb-name>
  |             <jndi-name>SubscriberEjbBean</jndi-name>
  |         </session>
  | 
  |         <session>
  |             <ejb-name>AirlineEjbBean</ejb-name>
  |             <jndi-name>AirlineEjbBean</jndi-name>
  |         </session>
  | 
  |         <session>
  |             <ejb-name>SsimEjbBean</ejb-name>
  |             <jndi-name>SsimEjbBean</jndi-name>
  |         </session>
  | 
  |     </enterprise-beans>
  | </jboss>

Console Log:
08:57:38,089 INFO  [ServerImpl] Starting JBoss (Microcontainer)...
  | 08:57:38,090 INFO  [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812041714)
  | 08:57:38,090 INFO  [ServerImpl] Bootstrap URL: null
  | 08:57:38,090 INFO  [ServerImpl] Home Dir: C:\JBoss\jboss-5.0.0.GA
  | 08:57:38,091 INFO  [ServerImpl] Home URL: file:/C:/JBoss/jboss-5.0.0.GA/
  | 08:57:38,091 INFO  [ServerImpl] Library URL: file:/C:/JBoss/jboss-5.0.0.GA/lib/
  | 08:57:38,091 INFO  [ServerImpl] Patch URL: null
  | 08:57:38,091 INFO  [ServerImpl] Common Base URL: file:/C:/JBoss/jboss-5.0.0.GA/common/
  | 08:57:38,092 INFO  [ServerImpl] Common Library URL: file:/C:/JBoss/jboss-5.0.0.GA/common/lib/
  | 08:57:38,092 INFO  [ServerImpl] Server Name: default
  | 08:57:38,092 INFO  [ServerImpl] Server Base Dir: C:\JBoss\jboss-5.0.0.GA\server
  | 08:57:38,092 INFO  [ServerImpl] Server Base URL: file:/C:/JBoss/jboss-5.0.0.GA/server/
  | 08:57:38,092 INFO  [ServerImpl] Server Config URL: file:/C:/JBoss/jboss-5.0.0.GA/server/default/conf/
  | 08:57:38,092 INFO  [ServerImpl] Server Home Dir: C:\JBoss\jboss-5.0.0.GA\server\default
  | 08:57:38,092 INFO  [ServerImpl] Server Home URL: file:/C:/JBoss/jboss-5.0.0.GA/server/default/
  | 08:57:38,093 INFO  [ServerImpl] Server Data Dir: C:\JBoss\jboss-5.0.0.GA\server\default\data
  | 08:57:38,093 INFO  [ServerImpl] Server Library URL: file:/C:/JBoss/jboss-5.0.0.GA/server/default/lib/
  | 08:57:38,093 INFO  [ServerImpl] Server Log Dir: C:\JBoss\jboss-5.0.0.GA\server\default\log
  | 08:57:38,093 INFO  [ServerImpl] Server Native Dir: C:\JBoss\jboss-5.0.0.GA\server\default\tmp\native
  | 08:57:38,093 INFO  [ServerImpl] Server Temp Dir: C:\JBoss\jboss-5.0.0.GA\server\default\tmp
  | 08:57:38,093 INFO  [ServerImpl] Server Temp Deploy Dir: C:\JBoss\jboss-5.0.0.GA\server\default\tmp\deploy
  | 08:57:38,652 INFO  [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/JBoss/jboss-5.0.0.GA/server/default/conf/bootstrap.xml
  | 08:57:39,094 INFO  [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.IterableTimedVFSCache]
  | 08:57:39,101 INFO  [VFSCacheFactory] Using VFSCache [IterableTimedVFSCache{lifetime=1800, resolution=60}]
  | 08:57:39,370 INFO  [CopyMechanism] VFS temp dir: C:\JBoss\jboss-5.0.0.GA\server\default\tmp
  | 08:57:39,373 INFO  [ZipEntryContext] VFS force nested jars copy-mode is enabled.
  | 08:57:40,309 INFO  [ServerInfo] Java version: 1.6.0_10,Sun Microsystems Inc.
  | 08:57:40,309 INFO  [ServerInfo] Java VM: Java HotSpot(TM) 64-Bit Server VM 11.0-b15,Sun Microsystems Inc.
  | 08:57:40,309 INFO  [ServerInfo] OS-System: Windows Vista 6.0,amd64
  | 08:57:40,342 INFO  [JMXKernel] Legacy JMX core initialized
  | 08:57:42,168 INFO  [ProfileServiceImpl] Loading profile: default from: org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository at 1da12fc0(root=C:\JBoss\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey at 143b82c3[domain=default,server=default,name=default])
  | 08:57:42,169 INFO  [ProfileImpl] Using repository:org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository at 1da12fc0(root=C:\JBoss\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey at 143b82c3[domain=default,server=default,name=default])
  | 08:57:42,170 INFO  [ProfileServiceImpl] Loaded profile: ProfileImpl at d93a6a5{key=org.jboss.profileservice.spi.ProfileKey at 143b82c3[domain=default,server=default,name=default]}
  | 08:57:43,593 INFO  [WebService] Using RMI server codebase: http://127.0.0.1:8083/
  | 08:57:49,399 INFO  [NativeServerConfig] JBoss Web Services - Stack Native Core
  | 08:57:49,400 INFO  [NativeServerConfig] 3.0.4.SP1
  | 08:57:53,090 ERROR [AbstractKernelController] Error installing to Parse: name=vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB_EJB.jar/ state=Not Installed mode=Manual requiredState=Parse
  | org.jboss.deployers.spi.DeploymentException: Error creating managed object for vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB_EJB.jar/
  | 	at org.jboss.deployers.spi.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:49)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.createMetaData(AbstractParsingDeployerWithOutput.java:337)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.createMetaData(AbstractParsingDeployerWithOutput.java:297)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.createMetaData(AbstractParsingDeployerWithOutput.java:269)
  | 	at org.jboss.deployment.JBossEjbParsingDeployer.createMetaData(JBossEjbParsingDeployer.java:95)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.deploy(AbstractParsingDeployerWithOutput.java:230)
  | 	at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
  | 	at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | 	at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | 	at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
  | 	at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:545)
  | 	at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:304)
  | 	at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:205)
  | 	at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:405)
  | 	at org.jboss.Main.boot(Main.java:209)
  | 	at org.jboss.Main$1.run(Main.java:547)
  | 	at java.lang.Thread.run(Thread.java:619)
  | Caused by: org.jboss.xb.binding.JBossXBException: Failed to parse source: Element {http://java.sun.com/xml/ns/javaee}jboss is not bound as a global element.
  | 	at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:203)
  | 	at org.jboss.xb.binding.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:168)
  | 	at org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper.parse(JBossXBDeployerHelper.java:199)
  | 	at org.jboss.deployers.vfs.spi.deployer.JBossXBDeployerHelper.parse(JBossXBDeployerHelper.java:170)
  | 	at org.jboss.deployers.vfs.spi.deployer.SchemaResolverDeployer.parse(SchemaResolverDeployer.java:132)
  | 	at org.jboss.deployers.vfs.spi.deployer.SchemaResolverDeployer.parse(SchemaResolverDeployer.java:118)
  | 	at org.jboss.deployers.vfs.spi.deployer.AbstractVFSParsingDeployer.parseAndInit(AbstractVFSParsingDeployer.java:256)
  | 	at org.jboss.deployers.vfs.spi.deployer.AbstractVFSParsingDeployer.parse(AbstractVFSParsingDeployer.java:188)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.createMetaData(AbstractParsingDeployerWithOutput.java:323)
  | 	... 23 more
  | Caused by: org.jboss.xb.binding.JBossXBRuntimeException: Element {http://java.sun.com/xml/ns/javaee}jboss is not bound as a global element.
  | 	at org.jboss.xb.binding.sunday.unmarshalling.SundayContentHandler.startElement(SundayContentHandler.java:667)
  | 	at org.jboss.xb.binding.parser.sax.SaxJBossXBParser$DelegatingContentHandler.startElement(SaxJBossXBParser.java:401)
  | 	at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
  | 	at org.apache.xerces.xinclude.XIncludeHandler.startElement(Unknown Source)
  | 	at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
  | 	at org.apache.xerces.impl.XMLNSDocumentScannerImpl$NSContentDispatcher.scanRootElementHook(Unknown Source)
  | 	at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
  | 	at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
  | 	at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
  | 	at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
  | 	at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
  | 	at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
  | 	at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
  | 	at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:199)
  | 	... 31 more
  | 08:58:01,270 INFO  [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://127.0.0.1/jndi/rmi://127.0.0.1:1090/jmxconnector
  | 08:58:01,486 INFO  [MailService] Mail Service bound to java:/Mail
  | 08:58:04,029 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.
  | 08:58:04,065 WARN  [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
  | 08:58:04,298 INFO  [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
  | 08:58:04,298 INFO  [TransactionManagerService] Setting up property manager MBean and JMX layer
  | 08:58:04,641 INFO  [TransactionManagerService] Initializing recovery manager
  | 08:58:04,888 INFO  [TransactionManagerService] Recovery manager configured
  | 08:58:04,888 INFO  [TransactionManagerService] Binding TransactionManager JNDI Reference
  | 08:58:04,919 INFO  [TransactionManagerService] Starting transaction recovery manager
  | 08:58:05,598 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on http-127.0.0.1-8080
  | 08:58:05,603 INFO  [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-127.0.0.1-8009
  | 08:58:05,604 INFO  [StandardService] Starting service jboss.web
  | 08:58:05,607 INFO  [StandardEngine] Starting Servlet Engine: JBoss Web/2.1.1.GA
  | 08:58:05,676 INFO  [Catalina] Server startup in 169 ms
  | 08:58:05,703 INFO  [TomcatDeployment] deploy, ctxPath=/jbossws, vfsUrl=jbossws.sar/jbossws-management.war
  | 08:58:06,597 INFO  [TomcatDeployment] deploy, ctxPath=/invoker, vfsUrl=http-invoker.sar/invoker.war
  | 08:58:06,758 INFO  [TomcatDeployment] deploy, ctxPath=/web-console, vfsUrl=management/console-mgr.sar/web-console.war
  | 08:58:07,270 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
  | 08:58:07,298 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
  | 08:58:07,341 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/jms-ra.rar/META-INF/ra.xml
  | 08:58:07,384 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/mail-ra.rar/META-INF/ra.xml
  | 08:58:07,449 INFO  [RARDeployment] Required license terms exist, view vfszip:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/quartz-ra.rar/META-INF/ra.xml
  | 08:58:07,606 INFO  [SimpleThreadPool] Job execution threads will use class loader of thread: main
  | 08:58:07,666 INFO  [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
  | 08:58:07,670 INFO  [RAMJobStore] RAMJobStore initialized.
  | 08:58:07,671 INFO  [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
  | 08:58:07,671 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.5.2
  | 08:58:07,672 INFO  [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
  | 08:58:07,911 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=WABDS' to JNDI name 'java:WABDS'
  | 08:58:07,993 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=ahm565DS' to JNDI name 'java:ahm565DS'
  | 08:58:08,167 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
  | 08:58:08,668 WARN  [QuartzTimerServiceFactory] sql failed: CREATE TABLE QRTZ_JOB_DETAILS(JOB_NAME VARCHAR(80) NOT NULL, JOB_GROUP VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(120) NULL, JOB_CLASS_NAME VARCHAR(128) NOT NULL, IS_DURABLE VARCHAR(1) NOT NULL, IS_VOLATILE VARCHAR(1) NOT NULL, IS_STATEFUL VARCHAR(1) NOT NULL, REQUESTS_RECOVERY VARCHAR(1) NOT NULL, JOB_DATA BINARY NULL, PRIMARY KEY (JOB_NAME,JOB_GROUP))
  | 08:58:08,717 INFO  [SimpleThreadPool] Job execution threads will use class loader of thread: main
  | 08:58:08,722 INFO  [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
  | 08:58:08,722 INFO  [JobStoreCMT] Using db table-based data access locking (synchronization).
  | 08:58:08,746 INFO  [JobStoreCMT] Removed 0 Volatile Trigger(s).
  | 08:58:08,746 INFO  [JobStoreCMT] Removed 0 Volatile Job(s).
  | 08:58:08,748 INFO  [JobStoreCMT] JobStoreCMT initialized.
  | 08:58:08,748 INFO  [StdSchedulerFactory] Quartz scheduler 'JBossEJB3QuartzScheduler' initialized from an externally provided properties instance.
  | 08:58:08,748 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.5.2
  | 08:58:08,755 INFO  [JobStoreCMT] Freed 0 triggers from 'acquired' / 'blocked' state.
  | 08:58:08,759 INFO  [JobStoreCMT] Recovering 0 jobs that were in-progress at the time of the last shut-down.
  | 08:58:08,759 INFO  [JobStoreCMT] Recovery complete.
  | 08:58:08,761 INFO  [JobStoreCMT] Removed 0 'complete' triggers.
  | 08:58:08,762 INFO  [JobStoreCMT] Removed 0 stale fired job entries.
  | 08:58:08,766 INFO  [QuartzScheduler] Scheduler JBossEJB3QuartzScheduler_$_NON_CLUSTERED started.
  | 08:58:09,271 INFO  [ServerPeer] JBoss Messaging 1.4.1.GA server [0] started
  | 08:58:09,394 INFO  [QueueService] Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
  | 08:58:09,531 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
  | 08:58:09,531 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory at 5d9366f1 started
  | 08:58:09,532 WARN  [ConnectionFactoryJNDIMapper] supportsFailover attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support failover
  | 08:58:09,532 WARN  [ConnectionFactoryJNDIMapper] supportsLoadBalancing attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support load balancing
  | 08:58:09,533 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
  | 08:58:09,533 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory at 1274fb41 started
  | 08:58:09,536 INFO  [QueueService] Queue[/queue/SSMQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
  | 08:58:09,537 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
  | 08:58:09,537 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory at 52711d63 started
  | 08:58:09,539 INFO  [QueueService] Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
  | 08:58:09,547 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
  | 08:58:09,600 INFO  [TomcatDeployment] deploy, ctxPath=/, vfsUrl=ROOT.war
  | 08:58:09,682 INFO  [TomcatDeployment] deploy, ctxPath=/WAB, vfsUrl=WAB.war
  | 08:58:09,844 WARN  [config] JSF1059: WARNING!  The com.sun.faces.verifyObjects feature is to aid developers not using tools.  It shouldn''t be enabled if using an IDE, or if this application is being deployed for production as it will impact application start times.
  | 08:58:11,772 ERROR [[/WAB]] Exception sending context initialized event to listener instance of class org.jboss.web.jsf.integration.config.JBossJSFConfigureListener
  | java.lang.NoClassDefFoundError: com/sita/wab/exceptions/ApplicationException
  | 	at java.lang.Class.getDeclaredConstructors0(Native Method)
  | 	at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
  | 	at java.lang.Class.getConstructor0(Class.java:2699)
  | 	at java.lang.Class.getConstructor(Class.java:1657)
  | 	at com.sun.faces.mgbean.BeanBuilder.loadBeanClass(BeanBuilder.java:426)
  | 	at com.sun.faces.mgbean.BeanBuilder.bake(BeanBuilder.java:378)
  | 	at com.sun.faces.mgbean.ManagedBeanBuilder.bake(ManagedBeanBuilder.java:90)
  | 	at com.sun.faces.mgbean.BeanManager.preProcessBean(BeanManager.java:311)
  | 	at com.sun.faces.mgbean.BeanManager.preProcessesBeans(BeanManager.java:159)
  | 	at com.sun.faces.config.processor.ManagedBeanConfigProcessor.process(ManagedBeanConfigProcessor.java:253)
  | 	at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
  | 	at com.sun.faces.config.processor.ValidatorConfigProcessor.process(ValidatorConfigProcessor.java:107)
  | 	at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
  | 	at com.sun.faces.config.processor.ConverterConfigProcessor.process(ConverterConfigProcessor.java:117)
  | 	at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
  | 	at com.sun.faces.config.processor.ComponentConfigProcessor.process(ComponentConfigProcessor.java:108)
  | 	at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
  | 	at com.sun.faces.config.processor.ApplicationConfigProcessor.process(ApplicationConfigProcessor.java:252)
  | 	at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
  | 	at com.sun.faces.config.processor.LifecycleConfigProcessor.process(LifecycleConfigProcessor.java:119)
  | 	at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
  | 	at com.sun.faces.config.processor.FactoryConfigProcessor.process(FactoryConfigProcessor.java:132)
  | 	at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:203)
  | 	at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:196)
  | 	at org.jboss.web.jsf.integration.config.JBossJSFConfigureListener.contextInitialized(JBossJSFConfigureListener.java:75)
  | 	at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3910)
  | 	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4393)
  | 	at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:367)
  | 	at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146)
  | 	at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:460)
  | 	at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
  | 	at org.jboss.web.deployers.WebModule.start(WebModule.java:96)
  | 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | 	at java.lang.reflect.Method.invoke(Method.java:597)
  | 	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
  | 	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
  | 	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | 	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | 	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
  | 	at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
  | 	at $Proxy36.start(Unknown Source)
  | 	at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
  | 	at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
  | 	at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
  | 	at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
  | 	at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
  | 	at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | 	at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
  | 	at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | 	at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | 	at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
  | 	at org.jboss.system.ServiceController.start(ServiceController.java:460)
  | 	at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:146)
  | 	at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:104)
  | 	at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:45)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
  | 	at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
  | 	at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | 	at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | 	at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
  | 	at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:545)
  | 	at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:304)
  | 	at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:205)
  | 	at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:405)
  | 	at org.jboss.Main.boot(Main.java:209)
  | 	at org.jboss.Main$1.run(Main.java:547)
  | 	at java.lang.Thread.run(Thread.java:619)
  | Caused by: java.lang.ClassNotFoundException: com.sita.wab.exceptions.ApplicationException from BaseClassLoader at 2eeccf6e{VFSClassLoaderPolicy at 3d2656d3{name=vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ domain=ClassLoaderDomain at 1bfdbab5{name=vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ parentPolicy=AFTER_BUT_JAVA_BEFORE parent=ClassLoaderDomain at 45b2b450{DefaultDomain}} roots=[MemoryContextHandler at 537810434[path= context=vfsmemory://5c4o12v-f0lm75-fozrkh1b-1-fozrksfq-20 real=vfsmemory://5c4o12v-f0lm75-fozrkh1b-1-fozrksfq-20], FileHandler at 221294015[path=WAB.war/WEB-INF/classes context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/classes/], DelegatingHandler at 1994317148[path=WAB.war/WEB-INF/lib/commons-beanutils-bean-collections.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/commons-beanutils-bean-collections.jar], DelegatingHandler at 563544060[path=WAB.war/WEB-INF/lib/commons-beanutils-core.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/commons-beanutils-core.jar], DelegatingHandler at 1082133150[path=WAB.war/WEB-INF/lib/commons-beanutils.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/commons-beanutils.jar], DelegatingHandler at 372845607[path=WAB.war/WEB-INF/lib/commons-collections-3.2.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/commons-collections-3.2.jar], DelegatingHandler at 58834903[path=WAB.war/WEB-INF/lib/commons-digester-1.8.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/commons-digester-1.8.jar], DelegatingHandler at 995737101[path=WAB.war/WEB-INF/lib/iText-2.1.3.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/iText-2.1.3.jar], DelegatingHandler at 13395436[path=WAB.war/WEB-INF/lib/j4j.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/j4j.jar], DelegatingHandler at 1798793564[path=WAB.war/WEB-INF/lib/jcommon-1.0.14.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/jcommon-1.0.14.jar], DelegatingHandler at 48647682[path=WAB.war/WEB-INF/lib/jfreechart-1.0.11-swt.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/jfreechart-1.0.11-swt.jar], DelegatingHandler at 1577805514[path=WAB.war/WEB-INF/lib/jfreechart-1.0.11.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/jfreechart-1.0.11.jar], DelegatingHandler at 1049200642[path=WAB.war/WEB-INF/lib/jlfgr-1_0.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/jlfgr-1_0.jar], DelegatingHandler at 926964577[path=WAB.war/WEB-INF/lib/jsf-facelets.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/jsf-facelets.jar], DelegatingHandler at 1647270301[path=WAB.war/WEB-INF/lib/richfaces-api-3.3.0-20081108.050927-67.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/richfaces-api-3.3.0-20081108.050927-67.jar], DelegatingHandler at 312771783[path=WAB.war/WEB-INF/lib/richfaces-impl-3.3.0-20081108.050927-67.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/richfaces-impl-3.3.0-20081108.050927-67.jar], DelegatingHandler at 1862872672[path=WAB.war/WEB-INF/lib/richfaces-ui-3.3.0-20081108.050927-49.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/richfaces-ui-3.3.0-20081108.050927-49.jar], DelegatingHandler at 1136908691[path=WAB.war/WEB-INF/lib/swtgraphics2d.jar context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/lib/swtgraphics2d.jar], FileHandler at 1862362278[path=WAB.war/WEB-INF context=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/ real=file:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/WEB-INF/]]  delegates=null exported=[org.jfree.util, , META-INF.maven.org.richfaces.ui.treeModel, org.jfree.data.function, org.richfaces.webapp.taglib, com.lowagie.text.pdf.draw, META-INF.maven.org.richfaces.ui.componentControl, org.jfree.chart.annotations, org.j4j.components, com.sita.wab.constants, org.apache.commons.digester.plugins, META-INF.maven.org.richfaces.ui.togglePanel, org.apache.commons.beanutils.locale.converters, org.jfree.chart.plot.dial, org.apache.commons.beanutils.converters, com.lowagie.text.pdf.events, META-INF.rsc, org.richfaces.renderkit.html.scripts.dnd, META-INF.maven.org.richfaces.ui.inputnumber-slider, org.ajax4jsf.org.w3c.tidy, org.ajax4jsf.taglib.html.jsp, com.sita.wab.comparator, org.jfree.data.xml, META-INF.maven.org.richfaces.ui.insert, org.jfree.chart.needle, com.sun.facelets.util, com.sita.wab.converters, com.lowagie.text.pdf.codec, org.jfree.data.resources, org.apache.commons.collections.list, com.lowagie.text.pdf, org.ajax4jsf.util.base64, org.richfaces.renderkit.html.scripts.jquery, META-INF.maven.org.richfaces.ui.tabPanel, org.jfree.chart.servlet, org.ajax4jsf, org.jfree.ui.about.resources, org.jfree.chart.renderer.category, com.lowagie.text.pdf.internal, org.jfree.ui, org.richfaces.renderkit.html.images.background, org.jfree.base.modules, org.jfree.data.statistics, org.ajax4jsf.webapp.tidy, META-INF.maven.org.richfaces.ui.menu-components, org.jfree.chart.urls, org.apache.commons.digester, org.richfaces.renderkit.html.scripts.json, toolbarButtonGraphics.table, org.jfree.data.category, org.richfaces.event.sort, org.ajax4jsf.resource, org.ajax4jsf.request, org.ajax4jsf.component.html, org.ajax4jsf.javascript, org.richfaces.ui.component, com.sun.facelets.tag.ui, org.apache.commons.collections.functors, org.jfree.base.config, META-INF.skins, META-INF.maven.org.richfaces.ui.hotKey, org.ajax4jsf.io, toolbarButtonGraphics.text, META-INF.maven.org.richfaces.ui.virtualEarth, com.lowagie.text.xml.xmp, META-INF.services, com.sita.wab.managed, org.apache.commons.digester.parser, META-INF.maven.org.richfaces.ui.toolBar, com.lowagie.text.xml.simpleparser, com.sun.facelets.tag, org.richfaces.model.impl, org.j4j.tags, org.apache.commons.collections.collection, com.lowagie.text, toolbarButtonGraphics.media, org.richfaces.model, META-INF.maven.org.richfaces.ui.contextMenu, com.sun.facelets.impl, META-INF.maven.org.richfaces.ui.richfaces-ui, org.jfree.data.gantt, org.apache.commons.collections.map, com.sita.wab.utils.deligates, com.sun.facelets.tag.jsf.html, toolbarButtonGraphics.navigation, META-INF.maven.org.richfaces.ui.tree, META-INF.maven.org.richfaces.ui.paint2D, org.jfree.chart.axis, org.ajax4jsf.renderkit, toolbarButtonGraphics.general, META-INF.maven.org.richfaces.ui.panelmenu, com.sun.facelets.tag.jstl.fn, org.ajax4jsf.context, META-INF.maven.org.richfaces.ui.columns, org.apache.commons.digester.substitution, org.jfree.text, META-INF.maven.org.richfaces.ui.beanValidator, META-INF.maven.org.richfaces.ui.progressBar, org.apache.commons.beanutils, org.ajax4jsf.resource.image, org.ajax4jsf.taglib.html.facelets, org.richfaces.util, META-INF.maven.org.richfaces.ui.inputnumber-spinner, org.richfaces.component.state, org.jfree.chart.entity, org.apache.commons.collections.iterators, META-INF.maven.org.richfaces.ui.combobox, META-INF.maven.org.richfaces.ui.simpleTogglePanel, org.jfree.chart.util, com.lowagie.tools, com.sita.wab.managed.airline, META-INF.maven.org.richfaces.ui.modal-panel, org.jfree.chart.renderer, META-INF.maven.org.richfaces.framework.richfaces-impl, org.ajax4jsf.util.style, org.jfree.chart.resources, META-INF, org.ajax4jsf.cache, org.richfaces.renderkit.html.js, org.jfree.ui.tabbedui, org.jfree.base.log, org.richfaces.ui.taglib, org.richfaces.javacc, org.richfaces.utils, META-INF.maven.org.richfaces.ui.core, com.sun.facelets.el, org.ajax4jsf.util, META-INF.maven.org.richfaces.ui.inplaceSelect, org.richfaces.component.state.events, org.jfree.data.jdbc, META-INF.maven.org.richfaces.ui.separator, com.sun.facelets.component, org.ajax4jsf.resource.image.animatedgif, org.jfree.chart, org.jfree, org.apache.commons.collections.keyvalue, org.jfree.chart.labels, com.lowagie.text.pdf.hyphenation, org.jfree.layout, org.richfaces.model.filter, org.richfaces.component.util, org.richfaces.renderkit.html.gradientimages, org.jfree.experimental.chart.swt.editor, META-INF.maven.org.richfaces.ui.dropdown-menu, org.richfaces.renderkit.html.scripts.scriptaculous, org.richfaces.renderkit.html.script, org.apache.commons.collections.bag, org.richfaces.component.nsutils, org.jfree.experimental.chart.swt, org.richfaces.model.selection, com.sita.wab.textbundles, org.richfaces.renderkit.images, org.ajax4jsf.exception, META-INF.maven.org.richfaces.ui.spacer, META-INF.maven.org.richfaces.ui.gmap, org.richfaces.ui.application, com.lowagie.text.factories, org.ajax4jsf.event, org.ajax4jsf.webapp, org.jfree.experimental.swt, org.jfree.io, org.richfaces.model.internal, org.apache.commons.digester.plugins.strategies, org.ajax4jsf.xml.serializer, META-INF.maven.org.richfaces.ui.scrollableDataTable, org.apache.commons.beanutils.locale, org.jfree.data.time, org.richfaces.taglib.html.jsp, META-INF.maven.org.richfaces.ui.suggestionbox, com.sun.facelets.tag.jsf, org.apache.commons.collections, org.ajax4jsf.renderkit.compiler, org.ajax4jsf.resource.util, META-INF.maven.org.richfaces.ui.extendedDataTable, org.richfaces.ui.renderkit.html, org.richfaces.function, org.ajax4jsf.webapp.taglib, com.lowagie.text.pdf.codec.wmf, com.lowagie.text.pdf.collection, org.richfaces.taglib, com.sita.wab.validator, org.ajax4jsf.renderkit.html, org.apache.commons.collections.set, META-INF.maven.org.richfaces.ui.datascroller, META-INF.maven.org.richfaces.ui.fileUpload, org.richfaces.convert.selection, org.jfree.chart.editor, META-INF.maven.org.richfaces.ui.orderingList, org.richfaces.event, org.ajax4jsf.model, org.jfree.experimental.chart.swt.demo, org.jfree.data.general, org.richfaces.renderkit.html.templates, META-INF.maven.org.richfaces.ui.dataFilterSlider, org.richfaces.component.xml, org.richfaces.event.extdt, META-INF.maven.org.richfaces.ui.inplaceInput, org.jfree.chart.plot, org.richfaces.ui.component.html, org.richfaces.model.impl.expressive, org.jfree.base, org.jfree.chart.encoders, org.richfaces.component.html, META-INF.maven.org.richfaces.ui.pickList, org.apache.commons.collections.bidimap, META-INF.maven.org.richfaces.ui.dataTable, META-INF.maven.org.richfaces.framework.richfaces-api, org.ajax4jsf.javascript.scripts, org.richfaces.json, com.sun.facelets, org.richfaces.ui.model, META-INF.maven.org.richfaces.ui.effect, org.jfree.chart.demo, org.ajax4jsf.ajax, com.sun.facelets.tag.jsf.core, org.jfree.data.xy, org.jfree.chart.title, com.lowagie.text.pdf.crypto, org.ajax4jsf.css, org.ajax4jsf.resource.cached, META-INF.maven.org.richfaces.ui.functions, org.jfree.chart.renderer.xy, META-INF.maven.org.richfaces.ui.listShuttle, META-INF.maven.org.richfaces.ui.calendar, org.jfree.threads, org.richfaces.renderkit.html.swf, com.lowagie.text.html, META-INF.maven.org.richfaces.ui.jQuery, org.apache.commons.collections.buffer, org.richfaces.el, com.keypoint, org.apache.commons.collections.comparators, org.jfree.data.contour, org.ajax4jsf.config, META-INF.maven.org.richfaces.ui.panelbar, org.richfaces.renderkit.html.images, org.apache.commons.digester.xmlrules, META-INF.maven.org.richfaces.ui.state, org.richfaces.validator, com.sita.wab.utils, org.richfaces.skin, org.ajax4jsf.application, org.jfree.ui.about, com.lowagie.text.xml, org.jfree.chart.block, org.richfaces.component.events, org.richfaces.renderkit, org.jfree.data.io, META-INF.maven.org.richfaces.ui.tooltip, com.lowagie.text.html.simpleparser, org.jfree.data.time.ohlc, org.ajax4jsf.webapp.nekko, org.richfaces.renderkit.html.iconimages, org.ajax4jsf.component, org.ajax4jsf.io.parser, org.jfree.chart.imagemap, com.lowagie.text.pdf.fonts, org.richfaces.renderkit.html.scripts, org.jfree.date, org.richfaces.event.scroll, org.richfaces.renderkit.html.css, org.jfree.ui.action, org.richfaces.renderkit.html, org.jfree.resources, toolbarButtonGraphics.development, org.richfaces.iterator, META-INF.maven.org.richfaces.ui.panel, org.richfaces.component, org.jfree.data, META-INF.maven.org.richfaces.ui.message, org.jfree.chart.event, org.ajax4jsf.xml.serializer.utils, org.richfaces.convert.rowkey, com.sun.facelets.compiler, com.sun.facelets.tag.jstl.core, com.lowagie.text.pdf.interfaces, META-INF.maven.org.richfaces.ui.drag-drop, org.richfaces.ui.renderkit.html.css, org.richfaces] <IMPORT-ALL>NON_EMPTY}}
  | 	at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:385)
  | 	at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
  | 	at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
  | 	... 83 more
  | 08:58:11,774 ERROR [StandardContext] Error listenerStart
  | 08:58:11,775 ERROR [StandardContext] Context [/WAB] startup failed due to previous errors
  | 08:58:11,785 ERROR [AbstractKernelController] Error installing to Start: name=jboss.web.deployment:war=/WAB state=Create mode=Manual requiredState=Installed
  | org.jboss.deployers.spi.DeploymentException: URL vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ deployment failed
  | 	at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:388)
  | 	at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146)
  | 	at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:460)
  | 	at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
  | 	at org.jboss.web.deployers.WebModule.start(WebModule.java:96)
  | 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | 	at java.lang.reflect.Method.invoke(Method.java:597)
  | 	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
  | 	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
  | 	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | 	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | 	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
  | 	at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
  | 	at $Proxy36.start(Unknown Source)
  | 	at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
  | 	at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
  | 	at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
  | 	at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
  | 	at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
  | 	at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | 	at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
  | 	at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | 	at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | 	at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
  | 	at org.jboss.system.ServiceController.start(ServiceController.java:460)
  | 	at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:146)
  | 	at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:104)
  | 	at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:45)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
  | 	at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
  | 	at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | 	at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | 	at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
  | 	at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:545)
  | 	at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:304)
  | 	at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:205)
  | 	at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:405)
  | 	at org.jboss.Main.boot(Main.java:209)
  | 	at org.jboss.Main$1.run(Main.java:547)
  | 	at java.lang.Thread.run(Thread.java:619)
  | 08:58:11,792 ERROR [AbstractKernelController] Error installing to Real: name=vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ state=PreReal mode=Manual requiredState=Real
  | org.jboss.deployers.spi.DeploymentException: URL vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ deployment failed
  | 	at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:388)
  | 	at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:146)
  | 	at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:460)
  | 	at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
  | 	at org.jboss.web.deployers.WebModule.start(WebModule.java:96)
  | 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | 	at java.lang.reflect.Method.invoke(Method.java:597)
  | 	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
  | 	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
  | 	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | 	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | 	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
  | 	at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
  | 	at $Proxy36.start(Unknown Source)
  | 	at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
  | 	at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
  | 	at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
  | 	at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
  | 	at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
  | 	at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | 	at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
  | 	at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | 	at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | 	at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
  | 	at org.jboss.system.ServiceController.start(ServiceController.java:460)
  | 	at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:146)
  | 	at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:104)
  | 	at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:45)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
  | 	at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
  | 	at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
  | 	at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | 	at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | 	at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | 	at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | 	at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | 	at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
  | 	at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:545)
  | 	at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:304)
  | 	at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:205)
  | 	at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:405)
  | 	at org.jboss.Main.boot(Main.java:209)
  | 	at org.jboss.Main$1.run(Main.java:547)
  | 	at java.lang.Thread.run(Thread.java:619)
  | 08:58:11,840 INFO  [TomcatDeployment] deploy, ctxPath=/jmx-console, vfsUrl=jmx-console.war
  | 08:58:11,945 ERROR [ProfileServiceBootstrap] Failed to load profile: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
  | 
  | *** CONTEXTS IN ERROR: Name -> Error
  | 
  | vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ -> org.jboss.deployers.spi.DeploymentException: URL vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ deployment failed
  | 
  | vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB_EJB.jar/ -> org.jboss.xb.binding.JBossXBRuntimeException: Element {http://java.sun.com/xml/ns/javaee}jboss is not bound as a global element.
  | 
  | 
  | 08:58:11,966 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080
  | 08:58:12,003 INFO  [AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
  | 08:58:12,019 INFO  [ServerImpl] JBoss (Microcontainer) [5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812041714)] Started in 33s:924ms
  | 08:58:15,016 WARN  [loggerI18N] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResource to use for recovering non-serializable XAResource < 131075, 28, 26, 494545511025355102101575758995298975852575298501015610258102524551102535510210157575899529897585257529850101561025810253 >
  | 08:58:15,119 WARN  [loggerI18N] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResource to use for recovering non-serializable XAResource < 131075, 28, 26, 4945455110253551021015757589952989758525752985010156102585499455110253551021015757589952989758525752985010156102585550 >
  | 08:58:15,226 WARN  [loggerI18N] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResource to use for recovering non-serializable XAResource < 131075, 28, 26, 49454551102535510210157575899529897585257529850101561025855494551102535510210157575899529897585257529850101561025855102 >
  | 08:58:15,299 WARN  [loggerI18N] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResource to use for recovering non-serializable XAResource < 131075, 28, 26, 4945455110253551021015757589952989758525752985010156102585654455110253551021015757589952989758525752985010156102585751 >
  | 08:58:15,382 WARN  [loggerI18N] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResource to use for recovering non-serializable XAResource < 131075, 29, 27, 49454551102535510210157575899529897585257529850101561025849504945511025355102101575758995298975852575298501015610258495050 >
  | 08:58:15,464 WARN  [loggerI18N] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResource to use for recovering non-serializable XAResource < 131075, 29, 27, 49454551102535510210157575899529897585257529850101561025849515145511025355102101575758995298975852575298501015610258495152 >
  | 08:58:15,549 WARN  [loggerI18N] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] [com.arjuna.ats.internal.jta.resources.arjunacore.norecoveryxa] Could not find new XAResource to use for recovering non-serializable XAResource < 131075, 29, 27, 49454551102535510210157575899529897585257529850101561025849495645511025355102101575758995298975852575298501015610258494957 >



View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4197858#4197858

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4197858




More information about the jboss-user mailing list