1 2 Previous Next 18 Replies Latest reply on Dec 23, 2008 10:29 AM by pbaker01

    Binding / JNDI / EJB

    pbaker01

      We have an application that has three Stateless EJBs. During the initial development we did not use ejb-jar.xml or jboss.xml config files. When the beans were deplyed the system created several entries in the Global JNDI.

      We have now created jBoss.xml and ejb-jar files and now the EJB Global JNDI entries are no longer being created. What are we missing?

      THanks!

      From the console:

      16:31:40,148 INFO [EJBContainer] STARTED EJB: com.sita.wab.mdb.ssim.SSMListener ejbName: SSMListener
      16:31:40,317 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

      AirlineEjbBean/remote - EJB3.x Default Remote Business Interface
      AirlineEjbBean/remote-com.sita.wab.ejb.airline.AirlineEjbRemote - EJB3.x Remote Business Interface
      AirlineEjbBean/local - EJB3.x Default Local Business Interface
      AirlineEjbBean/local-com.sita.wab.ejb.airline.AirlineEjbLocal - EJB3.x Local Business Interface

      16:31:40,347 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

      SsimEjbBean/remote - EJB3.x Default Remote Business Interface
      SsimEjbBean/remote-com.sita.wab.ejb.ssim.SsimEjbRemote - EJB3.x Remote Business Interface
      SsimEjbBean/local - EJB3.x Default Local Business Interface
      SsimEjbBean/local-com.sita.wab.ejb.ssim.SsimEjbLocal - EJB3.x Local Business Interface

      16:31:40,368 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:

      SubscriberEjbBean/remote - EJB3.x Default Remote Business Interface
      SubscriberEjbBean/remote-com.sita.wab.ejb.subscriber.SubscriberEjbRemote - EJB3.x Remote Business Interface
      SubscriberEjbBean/local - EJB3.x Default Local Business Interface
      SubscriberEjbBean/local-com.sita.wab.ejb.subscriber.SubscriberEjbLocal - EJB3.x Local Business Interface

      16:31:40,558 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080


      These entries can be seen using JMX:

      +- SubscriberEjbBean (class: org.jnp.interfaces.NamingContext)
      | +- local (class: Proxy for: com.sita.wab.ejb.subscriber.SubscriberEjbLocal)
      | +- remote (class: Proxy for: com.sita.wab.ejb.subscriber.SubscriberEjbRemote)
      | +- local-com.sita.wab.ejb.subscriber.SubscriberEjbLocal (class: Proxy for: com.sita.wab.ejb.subscriber.SubscriberEjbLocal)
      | +- remote-com.sita.wab.ejb.subscriber.SubscriberEjbRemote (class: Proxy for: com.sita.wab.ejb.subscriber.SubscriberEjbRemote)


      We have created a JBoss.xml config file:
      <jboss>
       <enterprise-beans>
       <message-driven>
       <ejb-name>SSMListener</ejb-name>
       <configuration-name>Standard Message Driven Bean</configuration-name>
       <destination-jndi-name>queue/SSMQueue</destination-jndi-name>
       </message-driven>
      
       <session>
       <ejb-name>SubscriberEjb</ejb-name>
       <configuration-name>Standard Stateless SessionBean</configuration-name>
       <jndi-name>SubscriberEjb</jndi-name>
       </session>
      
       <session>
       <ejb-name>AirlineEjb</ejb-name>
       <configuration-name>Standard Stateless SessionBean</configuration-name>
       <jndi-name>AirlineEjb</jndi-name>
       </session>
      
       <session>
       <ejb-name>SsimEjbBean</ejb-name>
       <configuration-name>Standard Stateless SessionBean</configuration-name>
       <jndi-name>SsimEjbBean</jndi-name>
       </session>
      
       </enterprise-beans>
      </jboss>


      And an ejb-jar.xml file:

      <?xml version="1.0"?>
      <!DOCTYPE ejb-jar PUBLIC
       "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN"
       "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
      <ejb-jar>
       <enterprise-beans>
       <message-driven>
       <ejb-name>SSMListener</ejb-name>
       <ejb-class>com.sita.wab.mdb.ssim.SSMListener</ejb-class>
       <transaction-type>Container</transaction-type>
       <acknowledge-mode>AUTO_ACKNOWLEDGE</acknowledge-mode>
       <message-driven-destination>
       <destination-type>javax.jms.Queue</destination-type>
       <subscription-durability>
       Durable
       </subscription-durability>
       </message-driven-destination>
       </message-driven>
      
       <session>
       <ejb-name>SubscriberEjb</ejb-name>
       <remote>
       com.sita.wab.ejb.subscriber.SubscriberEjbRemote
       </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>AirlineEjb</ejb-name>
       <remote>com.sita.wab.ejb.airline.AirlineEjbRemote</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>
       <remote>com.sita.wab.ejb.ssim.SsimEjbRemote</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>
      


      When deployed with these config file the ejbs are not added to the global JNDI.

      Why?

      Global JNDI Namespace
       +- UserTransactionSessionFactory (proxy: $Proxy96 implements interface org.jboss.tm.usertx.interfaces.UserTransactionSessionFactory)
       +- UUIDKeyGeneratorFactory (class: org.jboss.ejb.plugins.keygenerator.uuid.UUIDKeyGeneratorFactory)
       +- HiLoKeyGeneratorFactory (class: org.jboss.ejb.plugins.keygenerator.hilo.HiLoKeyGeneratorFactory)
       +- XAConnectionFactory (class: org.jboss.jms.client.JBossConnectionFactory)
       +- topic (class: org.jnp.interfaces.NamingContext)
       +- ClusteredConnectionFactory (class: org.jboss.jms.client.JBossConnectionFactory)
       +- ProfileService (class: AOPProxy$0)
       +- queue (class: org.jnp.interfaces.NamingContext)
       | +- SSMQueue (class: org.jboss.jms.destination.JBossQueue)
       | +- DLQ (class: org.jboss.jms.destination.JBossQueue)
       | +- ExpiryQueue (class: org.jboss.jms.destination.JBossQueue)
       +- ClusteredXAConnectionFactory (class: org.jboss.jms.client.JBossConnectionFactory)
       +- UserTransaction (class: org.jboss.tm.usertx.client.ClientUserTransaction)
       +- ConnectionFactory (class: org.jboss.jms.client.JBossConnectionFactory)
       +- jmx (class: org.jnp.interfaces.NamingContext)
       | +- invoker (class: org.jnp.interfaces.NamingContext)
       | | +- RMIAdaptor (proxy: $Proxy98 implements interface org.jboss.jmx.adaptor.rmi.RMIAdaptor,interface org.jboss.jmx.adaptor.rmi.RMIAdaptorExt)
       | +- rmi (class: org.jnp.interfaces.NamingContext)
       | | +- RMIAdaptor[link -> jmx/invoker/RMIAdaptor] (class: javax.naming.LinkRef)
       +- persistence.unit:unitName=#WABPU (class: org.hibernate.impl.SessionFactoryImpl)
       +- TomcatAuthenticators (class: java.util.Properties)
       +- console (class: org.jnp.interfaces.NamingContext)
       | +- PluginManager (proxy: $Proxy99 implements interface org.jboss.console.manager.PluginManagerMBean)


        • 1. Re: Binding / JNDI / EJB
          pbaker01

          btw: JBoss 5.0.0 GA

          • 2. Re: Binding / JNDI / EJB
            pbaker01

            One more thing.... Using the ejb-jar.xml and jboss.xml descriptor files has solved the MDB problem wrt start/stopDelivery issue raised in:
            http://www.jboss.com/index.html?module=bb&op=viewtopic&t=147390

            But this missing JNDI entries causes several new problems.

            Also, when I change the version number to <ejb-jar version="3.0" we get several deployment errors.

            Are these bugs or configuration problems?

            Any comments will be appreciated... PB

            • 3. Re: Binding / JNDI / EJB
              jaikiran

               

              <session>
               <ejb-name>AirlineEjb</ejb-name>
               <configuration-name>Standard Stateless SessionBean</configuration-name>
               <jndi-name>AirlineEjb</jndi-name>
               </session>


              Instead of the jndi-name, try the mapped-name instead. And please post the entire console logs. Let us know how it goes.

              • 4. Re: Binding / JNDI / EJB
                alrubinger

                I have a sneaking suspicion that jndi-name support is lacking.

                Jaikiran, mind opening a JIRA w/ some simple integration test for it? I should look when I'm back next week.

                S,
                ALR

                • 5. Re: Binding / JNDI / EJB
                  jaikiran

                   

                  "ALRubinger" wrote:


                  Jaikiran, mind opening a JIRA w/ some simple integration test for it?


                  I could reproduce this issue. Created https://jira.jboss.org/jira/browse/EJBTHREE-1649 with a testcase attached.

                  "jaikiran" wrote:

                  Instead of the jndi-name, try the mapped-name instead. And please post the entire console logs. Let us know how it goes.


                  From what i tried while debugging this issue, the mapped-name is not going to work either.

                  The issue occurs specifically, when you have the < remote> element in the ejb-jar.xml. So this does not work (does not matter if you have the ejb-jar_2_0.dtd declaration or not):

                  ejb-jar.xml:
                  <?xml version="1.0" encoding="UTF-8"?>
                  <!DOCTYPE ejb-jar PUBLIC
                   "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN"
                   "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
                  <ejb-jar>
                   <enterprise-beans>
                   <session>
                   <ejb-name>StatelessBeanOverridenJNDINameInXml</ejb-name>
                   <remote>org.jboss.ejb3.test.jndibinding.SimpleBean</remote>
                   <ejb-class>org.jboss.ejb3.test.jndibinding.StatelessBeanOverridenJNDINameInXml</ejb-class>
                   <session-type>Stateless</session-type>
                   <transaction-type>Container</transaction-type>
                  
                   </session>
                   </enterprise-beans>
                  </ejb-jar>
                  


                  jboss.xml:
                  <?xml version="1.0"?>
                  <jboss>
                  
                   <enterprise-beans>
                   <session>
                   <ejb-name>StatelessBeanOverridenJNDINameInXml</ejb-name>
                   <jndi-name>SomeJNDINameInXml</jndi-name>
                   </session>
                   </enterprise-beans>
                  </jboss>
                  


                  The only way i could get this to work is by changing the ejb-jar.xml to use a business-remote (and obviously the ejb 3.0 xsd). No change required in jboss.xml.

                  <?xml version="1.0" encoding="UTF-8"?>
                  <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>
                   <session>
                   <ejb-name>StatelessBeanOverridenJNDINameInXml</ejb-name>
                   <business-remote>org.jboss.ejb3.test.jndibinding.SimpleBean</business-remote>
                   <ejb-class>org.jboss.ejb3.test.jndibinding.StatelessBeanOverridenJNDINameInXml</ejb-class>
                   <session-type>Stateless</session-type>
                   <transaction-type>Container</transaction-type>
                  
                   </session>
                   </enterprise-beans>
                  </ejb-jar>
                  


                  From the logs i can see where the problem is coming from. However, i need to spend some more time debugging this, next week.

                  • 6. Re: Binding / JNDI / EJB
                    jaikiran

                    PB,

                    I reread the entire thread again:

                    During the initial development we did not use ejb-jar.xml or jboss.xml config files. When the beans were deplyed the system created several entries in the Global JNDI.

                    We have now created jBoss.xml and ejb-jar files and now the EJB Global JNDI entries are no longer being created. What are we missing?


                    1) Since these are EJB3 beans, use the ejb 3.0 xsd in the ejb-jar.xml:
                    <?xml version="1.0" encoding="UTF-8"?>
                    <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>
                    ...



                    2) There's a difference in the "remote" element and the "business-remote" element in the ejb-jar.xml. The "remote" element points the EJB2.x style remote interface (which used to extend EJBObject) and the business-remote element points to EJB3 style business interface. I guess, your usecase falls in the latter style. So change the remote to business-remote in the ejb-jar.xml. Here's an example:

                    <?xml version="1.0" encoding="UTF-8"?>
                    <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>
                     <session>
                     <ejb-name>SubscriberEjb</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>
                     </enterprise-beans>
                    </ejb-jar>
                    
                    
                    
                    
                    


                    • 7. Re: Binding / JNDI / EJB
                      pbaker01

                      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@1da12fc0(root=C:\JBoss\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
                      08:57:42,169 INFO [ProfileImpl] Using repository:org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@1da12fc0(root=C:\JBoss\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
                      08:57:42,170 INFO [ProfileServiceImpl] Loaded profile: ProfileImpl@d93a6a5{key=org.jboss.profileservice.spi.ProfileKey@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@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@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@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@2eeccf6e{VFSClassLoaderPolicy@3d2656d3{name=vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ domain=ClassLoaderDomain@1bfdbab5{name=vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ parentPolicy=AFTER_BUT_JAVA_BEFORE parent=ClassLoaderDomain@45b2b450{DefaultDomain}} roots=[MemoryContextHandler@537810434[path= context=vfsmemory://5c4o12v-f0lm75-fozrkh1b-1-fozrksfq-20 real=vfsmemory://5c4o12v-f0lm75-fozrkh1b-1-fozrksfq-20], FileHandler@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@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@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@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@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@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@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@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@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@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@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@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@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@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@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@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@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@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 >




                      • 8. Re: Binding / JNDI / EJB
                        jaikiran

                         

                        Caused by: org.jboss.xb.binding.JBossXBException: Failed to parse source: Element {http://java.sun.c
                        om/xml/ns/javaee}jboss is not bound as a global element.


                        You have an incorrect xsd declaration in jboss.xml. Change it to:
                         <jboss xmlns="http://www.jboss.com/xml/ns/javaee"
                         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                         xsi:schemaLocation="http://www.jboss.org/j2ee/schema
                         http://www.jboss.org/j2ee/schema/jboss_5_0.xsd"
                         version="5.0">


                        08:58:09,844 WARN [config] JSF1059: WARNING! The com.sun.faces.verifyObjects feature is to aid dev
                        elopers 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 clas
                        s org.jboss.web.jsf.integration.config.JBossJSFConfigureListener
                        java.lang.NoClassDefFoundError: com/sita/wab/exceptions/ApplicationException


                        Are you sure this class is packaged in your application?

                        After changing the jboss.xml check the JNDI tree to see whether the EJBs are bound to JNDI (which i believe should). If you are running into some other issue other than the EJB binding, please open a new thread in an appropriate forum so that we don't mix multiple issues in a single thread :-)

                        • 9. Re: Binding / JNDI / EJB
                          pbaker01

                          Hi,
                          Using the correct XSD corrected the problem. No more console errors!!!

                          The JBoss JNDI setting are like:

                          +- SsimEjbBean (class: org.jnp.interfaces.NamingContext)
                           | +- local (proxy: $Proxy74 implements interface com.sita.wab.ejb.ssim.SsimEjbLocal,interface org.jboss.ejb3.JBossProxy)
                           | +- remote (proxy: $Proxy73 implements interface com.sita.wab.ejb.ssim.SsimEjbRemote,interface org.jboss.ejb3.JBossProxy)


                          The JBoss:J2EE settings are:

                          jar=WAB_EJB.jar,name=AirlineEjbBean,service=EJB3
                          jar=WAB_EJB.jar,name=SSMListener,service=EJB3
                          jar=WAB_EJB.jar,name=SsimEjbBean,service=EJB3
                          jar=WAB_EJB.jar,name=SubscriberEjbBean,service=EJB3
                          module=WAB_EJB.jar,service=EJB3
                          service=ClientDeployer
                          service=EARDeployer


                          But now I have come full circle. I want to get a binding like the one below for our MDB:

                          binding=message-driven-bean,jndiName=SSMListener,plugin=invoker,service=EJB


                          I originally posted this question on the Beginners Corner forum. Then moved it to JBoss Messaging, and most recently here. For MDB's, the start/stopDelivery methods in jmx are only exposed when the binding is set like above. I am a newbe to configuring EJBs/MDBs so please take that into consideration. I have looked extensively through the wiki docs and many other posts.

                          We are currently deplying the app via eclipse as exploded.

                          If my problem is a binding issue and we are able to get it resolved, I will update the other posts accordingly.

                          This is really the million dollar question for us - how to expose the start/stopDelivery method on the MDB and we think it is related to the binding.

                          We VERY much appreciate your comments!

                          PB





                          • 10. Re: Binding / JNDI / EJB
                            pbaker01

                            Note: w.r.t. the above post, xsd only works with JBoss 4.2.3. I get a number of errors when running JBoss 5.0.0 GA.

                            For the above question regarding binding... Assume JBoss 4.2.3

                            I start a new thread for the jboss.xml issue.

                            • 11. Re: Binding / JNDI / EJB
                              jaikiran

                               

                              "pbaker01" wrote:
                              Note: w.r.t. the above post, xsd only works with JBoss 4.2.3. I get a number of errors when running JBoss 5.0.0 GA.



                              There should not be any errors with JBoss-5.0.0 GA too. Can you post more details along with exception stacktrace, if available?

                              • 12. Re: Binding / JNDI / EJB
                                pbaker01

                                Hi,

                                Here are the files for jboss.xml and ejb-jar.xml and the associated console log for both JBoss 4.2.3 and JBoss 5.0.0GA.

                                btw - did you have any thoughts regarding the MDB binding issue and the start/stopDelivery problem posted above? I would love to resolve this...

                                But now I have come full circle. I want to get a binding like the one below for our MDB:

                                Quote:
                                binding=message-driven-bean,jndiName=SSMListener,plugin=invoker,service=EJB



                                jboss.xml
                                <jboss xmlns="http://www.jboss.com/xml/ns/javaee"
                                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                 xsi:schemaLocation="http://www.jboss.org/j2ee/schema
                                 http://www.jboss.org/j2ee/schema/jboss_5_0.xsd"
                                 version="5.0">
                                 <security-domain></security-domain>
                                 <enterprise-beans>
                                 <message-driven>
                                 <ejb-name>SSMListener</ejb-name>
                                 <configuration-name>Standard Message Driven Bean</configuration-name>
                                 <destination-jndi-name>queue/SSMQueue</destination-jndi-name>
                                 </message-driven>
                                 </enterprise-beans>
                                </jboss>


                                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 4.2.3 console
                                10:06:12,770 INFO [Server] Starting JBoss (MX MicroKernel)...
                                10:06:12,771 INFO [Server] Release ID: JBoss [Trinity] 4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)
                                10:06:12,772 INFO [Server] Home Dir: C:\JBoss\jboss-4.2.3.GA
                                10:06:12,772 INFO [Server] Home URL: file:/C:/JBoss/jboss-4.2.3.GA/
                                10:06:12,773 INFO [Server] Patch URL: null
                                10:06:12,773 INFO [Server] Server Name: messaging
                                10:06:12,773 INFO [Server] Server Home Dir: C:\JBoss\jboss-4.2.3.GA\server\messaging
                                10:06:12,773 INFO [Server] Server Home URL: file:/C:/JBoss/jboss-4.2.3.GA/server/messaging/
                                10:06:12,773 INFO [Server] Server Log Dir: C:\JBoss\jboss-4.2.3.GA\server\messaging\log
                                10:06:12,773 INFO [Server] Server Temp Dir: C:\JBoss\jboss-4.2.3.GA\server\messaging\tmp
                                10:06:12,774 INFO [Server] Root Deployment Filename: jboss-service.xml
                                10:06:12,999 INFO [ServerInfo] Java version: 1.6.0_10,Sun Microsystems Inc.
                                10:06:12,999 INFO [ServerInfo] Java VM: Java HotSpot(TM) 64-Bit Server VM 11.0-b15,Sun Microsystems Inc.
                                10:06:12,999 INFO [ServerInfo] OS-System: Windows Vista 6.0,amd64
                                10:06:13,293 INFO [Server] Core system initialized
                                10:06:14,825 INFO [WebService] Using RMI server codebase: http://127.0.0.1:8083/
                                10:06:14,826 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:jboss-log4j.xml
                                10:06:15,521 INFO [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
                                10:06:15,521 INFO [TransactionManagerService] Setting up property manager MBean and JMX layer
                                10:06:15,728 INFO [TransactionManagerService] Starting recovery manager
                                10:06:15,811 INFO [TransactionManagerService] Recovery manager started
                                10:06:15,812 INFO [TransactionManagerService] Binding TransactionManager JNDI Reference
                                10:06:17,776 INFO [EJB3Deployer] Starting java:comp multiplexer
                                10:06:18,532 INFO [ServerPeer] ServerPeer[0] creating server peer with ID 0
                                10:06:20,523 INFO [NativeServerConfig] JBoss Web Services - Native
                                10:06:20,523 INFO [NativeServerConfig] jbossws-3.0.1-native-2.0.4.GA (build=200803312044)
                                10:06:21,307 INFO [Embedded] Catalina naming disabled
                                10:06:21,474 INFO [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_10\bin
                                10:06:21,545 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-127.0.0.1-8080
                                10:06:21,551 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-127.0.0.1-8009
                                10:06:21,551 INFO [Catalina] Initialization processed in 244 ms
                                10:06:21,551 INFO [StandardService] Starting service jboss.web
                                10:06:21,553 INFO [StandardEngine] Starting Servlet Engine: JBossWeb/2.0.1.GA
                                10:06:21,602 INFO [Catalina] Server startup in 51 ms
                                10:06:21,710 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/
                                10:06:22,463 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/http-invoker.sar/invoker.war/
                                10:06:22,599 INFO [TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../deploy/jbossws.sar/jbossws-context.war/
                                10:06:22,838 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/
                                10:06:23,384 INFO [MailService] Mail Service bound to java:/Mail
                                10:06:23,564 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
                                10:06:23,606 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
                                10:06:23,653 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
                                10:06:23,707 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
                                10:06:23,787 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jms-ra.rar
                                10:06:23,822 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/mail-ra.rar
                                10:06:23,874 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar
                                10:06:23,887 INFO [QuartzResourceAdapter] start quartz!!!
                                10:06:23,978 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
                                10:06:24,016 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
                                10:06:24,019 INFO [RAMJobStore] RAMJobStore initialized.
                                10:06:24,019 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
                                10:06:24,020 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
                                10:06:24,020 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
                                10:06:24,243 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=WABDS' to JNDI name 'java:WABDS'
                                10:06:24,417 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
                                10:06:24,514 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
                                10:06:25,138 INFO [ServerPeer] JBoss Messaging 1.3.0.GA server [0] started
                                10:06:25,454 INFO [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
                                10:06:25,454 INFO [ConnectionFactory] [/ConnectionFactory, /XAConnectionFactory, java:/ConnectionFactory, java:/XAConnectionFactory] started
                                10:06:25,455 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
                                10:06:25,455 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
                                10:06:25,458 INFO [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
                                10:06:25,458 INFO [ConnectionFactory] [/ClusteredConnectionFactory, /ClusteredXAConnectionFactory, java:/ClusteredConnectionFactory, java:/ClusteredXAConnectionFactory] started
                                10:06:25,472 INFO [QueueService] Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,475 INFO [QueueService] Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,477 INFO [TopicService] Topic[/topic/testTopic] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,478 INFO [TopicService] Topic[/topic/securedTopic] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,479 INFO [TopicService] Topic[/topic/testDurableTopic] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,482 INFO [QueueService] Queue[/queue/testQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,484 INFO [QueueService] Queue[/queue/A] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,487 INFO [QueueService] Queue[/queue/B] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,489 INFO [QueueService] Queue[/queue/C] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,491 INFO [QueueService] Queue[/queue/D] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,493 INFO [QueueService] Queue[/queue/ex] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,496 INFO [QueueService] Queue[/queue/PrivateDLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,499 INFO [QueueService] Queue[/queue/PrivateExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,501 INFO [QueueService] Queue[/queue/QueueWithOwnDLQAndExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,502 INFO [TopicService] Topic[/topic/TopicWithOwnDLQAndExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,505 INFO [QueueService] Queue[/queue/QueueWithOwnRedeliveryDelay] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,506 INFO [TopicService] Topic[/topic/TopicWithOwnRedeliveryDelay] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,509 INFO [QueueService] Queue[/queue/testDistributedQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,510 INFO [TopicService] Topic[/topic/testDistributedTopic] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:25,512 INFO [QueueService] Queue[/queue/SSMQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
                                10:06:26,248 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.entity.PersistenceUnitDeployment
                                10:06:26,257 INFO [JmxKernelAbstraction] installing MBean: persistence.units:jar=WAB_EJB.jar,unitName=WABPU with dependencies:
                                10:06:26,257 INFO [JmxKernelAbstraction] jboss.jca:name=WABDS,service=DataSourceBinding
                                10:06:26,259 INFO [PersistenceUnitDeployment] Starting persistence unit persistence.units:jar=WAB_EJB.jar,unitName=WABPU
                                10:06:26,303 INFO [Version] Hibernate EntityManager 3.2.1.GA
                                10:06:26,334 INFO [Version] Hibernate Annotations 3.2.1.GA
                                10:06:26,348 INFO [Environment] Hibernate 3.2.4.sp1
                                10:06:26,359 INFO [Environment] hibernate.properties not found
                                10:06:26,363 INFO [Environment] Bytecode provider name : javassist
                                10:06:26,371 INFO [Environment] using JDK 1.4 java.sql.Timestamp handling
                                10:06:26,842 INFO [Configuration] Reading mappings from resource : META-INF/orm.xml
                                10:06:26,844 INFO [Ejb3Configuration] [PersistenceUnit: WABPU] no META-INF/orm.xml found
                                10:06:27,280 INFO [HbmBinder] Mapping class: com.sita.wab.entities.aircraft.AircraftTypeImpl -> AircraftType
                                10:06:27,433 INFO [HbmBinder] Mapping class: com.sita.wab.entities.aircraft.AircraftTypeRevisionImpl -> AircraftTypeRevision
                                10:06:27,435 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.AirlineImpl -> Airline
                                10:06:27,442 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.AirlineBaggagePriorityImpl -> AirlineBaggagePriority
                                10:06:27,444 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.AirlineContactImpl -> AirlineContact
                                10:06:27,445 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.AirlineFlightTypeImpl -> AirlineFlightType
                                10:06:27,446 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.AirlineLoadInformationCodeImpl -> AirlineLoadInformationCode
                                10:06:27,447 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.AirlineMessageDeliveryOptionImpl -> AirlineMessageDeliveryOption
                                10:06:27,448 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.AirlineOptionsImpl -> AirlineOptions
                                10:06:27,451 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.AirlineUnitsOfMeasureImpl -> AirlineUnitsOfMeasure
                                10:06:27,453 INFO [HbmBinder] Mapping class: com.sita.wab.entities.airline.SubscriberImpl -> Subscriber
                                10:06:27,454 INFO [HbmBinder] Mapping class: com.sita.wab.entities.masterflight.MasterFlightImpl -> MasterFlight
                                10:06:27,459 INFO [HbmBinder] Mapping class: com.sita.wab.entities.masterflight.MasterFlightLegImpl -> MasterFlightLeg
                                10:06:27,467 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.aircraft.AircraftTypeImpl.SharedAircraftTypes -> AircraftType
                                10:06:27,467 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.aircraft.AircraftTypeImpl.AircraftTypeRevisions -> AircraftTypeRevision
                                10:06:27,467 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.aircraft.AircraftTypeRevisionImpl.SharedAircraftTypeRevisions -> AircraftTypeRevision
                                10:06:27,468 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.airline.AirlineImpl.AirlineLoadInformationCodes -> AirlineLoadInformationCode
                                10:06:27,468 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.airline.AirlineImpl.AirlineFlightTypes -> AirlineFlightType
                                10:06:27,468 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.airline.AirlineImpl.AirlineMessageDeliveryOption -> AirlineMessageDeliveryOption
                                10:06:27,468 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.airline.AirlineImpl.AirlineBaggagePriority -> AirlineBaggagePriority
                                10:06:27,468 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.airline.AirlineImpl.AircraftTypes -> AircraftType
                                10:06:27,468 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.airline.SubscriberImpl.Airline -> Airline
                                10:06:27,469 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.airline.SubscriberImpl.MasterFlights -> MasterFlight
                                10:06:27,469 INFO [HbmBinder] Mapping collection: com.sita.wab.entities.masterflight.MasterFlightImpl.MasterFlightLegs -> MasterFlightLeg
                                10:06:27,661 INFO [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
                                10:06:27,667 INFO [InjectedDataSourceConnectionProvider] Using provided datasource
                                10:06:27,680 INFO [SettingsFactory] RDBMS: MySQL, version: 5.0.67-community-nt
                                10:06:27,680 INFO [SettingsFactory] JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.0.7 ( $Date: 2007-03-09 22:13:57 +0100 (Fri, 09 Mar 2007) $, $Revision: 6341 $ )
                                10:06:27,711 INFO [Dialect] Using dialect: org.hibernate.dialect.MySQLDialect
                                10:06:27,718 INFO [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
                                10:06:27,722 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
                                10:06:27,725 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
                                10:06:27,726 INFO [SettingsFactory] Automatic flush during beforeCompletion(): disabled
                                10:06:27,726 INFO [SettingsFactory] Automatic session close at end of transaction: disabled
                                10:06:27,726 INFO [SettingsFactory] JDBC batch size: 15
                                10:06:27,726 INFO [SettingsFactory] JDBC batch updates for versioned data: disabled
                                10:06:27,727 INFO [SettingsFactory] Scrollable result sets: enabled
                                10:06:27,727 INFO [SettingsFactory] JDBC3 getGeneratedKeys(): enabled
                                10:06:27,727 INFO [SettingsFactory] Connection release mode: auto
                                10:06:27,730 INFO [SettingsFactory] Maximum outer join fetch depth: 2
                                10:06:27,730 INFO [SettingsFactory] Default batch fetch size: 1
                                10:06:27,730 INFO [SettingsFactory] Generate SQL with comments: disabled
                                10:06:27,730 INFO [SettingsFactory] Order SQL updates by primary key: disabled
                                10:06:27,730 INFO [SettingsFactory] Order SQL inserts for batching: disabled
                                10:06:27,730 INFO [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
                                10:06:27,736 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
                                10:06:27,736 INFO [SettingsFactory] Query language substitutions: {}
                                10:06:27,736 INFO [SettingsFactory] JPA-QL strict compliance: enabled
                                10:06:27,736 INFO [SettingsFactory] Second-level cache: enabled
                                10:06:27,736 INFO [SettingsFactory] Query cache: disabled
                                10:06:27,736 INFO [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
                                10:06:27,740 INFO [SettingsFactory] Optimize cache for minimal puts: disabled
                                10:06:27,740 INFO [SettingsFactory] Cache region prefix: WAB_EJB_jar,WABPU
                                10:06:27,740 INFO [SettingsFactory] Structured second-level cache entries: disabled
                                10:06:27,752 INFO [SettingsFactory] Statistics: disabled
                                10:06:27,752 INFO [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
                                10:06:27,752 INFO [SettingsFactory] Default entity-mode: pojo
                                10:06:27,752 INFO [SettingsFactory] Named query checking : enabled
                                10:06:27,803 INFO [SessionFactoryImpl] building session factory
                                10:06:28,178 INFO [SessionFactoryObjectFactory] Factory name: persistence.units:jar=WAB_EJB.jar,unitName=WABPU
                                10:06:28,180 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
                                10:06:28,186 INFO [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.units:jar=WAB_EJB.jar,unitName=WABPU
                                10:06:28,187 WARN [SessionFactoryObjectFactory] InitialContext did not implement EventContext
                                10:06:28,187 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
                                10:06:28,431 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
                                10:06:28,440 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=WAB_EJB.jar,name=AirlineEjbBean,service=EJB3 with dependencies:
                                10:06:28,440 INFO [JmxKernelAbstraction] persistence.units:jar=WAB_EJB.jar,unitName=WABPU
                                10:06:28,500 INFO [EJBContainer] STARTED EJB: com.sita.wab.ejb.airline.AirlineEjbBean ejbName: AirlineEjbBean
                                10:06:28,586 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
                                10:06:28,586 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=WAB_EJB.jar,name=SsimEjbBean,service=EJB3 with dependencies:
                                10:06:28,586 INFO [JmxKernelAbstraction] persistence.units:jar=WAB_EJB.jar,unitName=WABPU
                                10:06:28,593 INFO [EJBContainer] STARTED EJB: com.sita.wab.ejb.ssim.SsimEjbBean ejbName: SsimEjbBean
                                10:06:28,603 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
                                10:06:28,603 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=WAB_EJB.jar,name=SubscriberEjbBean,service=EJB3 with dependencies:
                                10:06:28,603 INFO [JmxKernelAbstraction] persistence.units:jar=WAB_EJB.jar,unitName=WABPU
                                10:06:28,611 INFO [EJBContainer] STARTED EJB: com.sita.wab.ejb.subscriber.SubscriberEjbBean ejbName: SubscriberEjbBean
                                10:06:28,623 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.mdb.MDB
                                10:06:28,627 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=WAB_EJB.jar,name=SSMListener,service=EJB3 with dependencies:
                                10:06:28,627 INFO [JmxKernelAbstraction] persistence.units:jar=WAB_EJB.jar,unitName=WABPU
                                10:06:28,634 INFO [EJBContainer] STARTED EJB: com.sita.wab.mdb.ssim.SSMListener ejbName: SSMListener
                                10:06:28,673 INFO [EJB3Deployer] Deployed: file:/C:/JBoss/jboss-4.2.3.GA/server/messaging/deploy/WAB_EJB.jar/
                                10:06:28,716 INFO [TomcatDeployer] deploy, ctxPath=/WAB, warUrl=.../deploy/WAB.war/
                                10:06:28,891 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.
                                10:06:32,922 INFO [CacheManager] Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
                                10:06:32,932 INFO [LRUMapCacheFactory] Creating LRUMap cache instance using parameters: {facelets.DEVELOPMENT=true, enable-cache=false, javax.faces.CONFIG_FILES=/WEB-INF/faces-config.xml, org.richfaces.CONTROL_SKINNING_CLASSES=enable, org.richfaces.SKIN=blueSky, com.sun.faces.injectionProvider=org.jboss.web.jsf.integration.injection.JBossInjectionProvider, com.sun.faces.validateXml=true, org.richfaces.LoadScriptStrategy=ALL, org.richfaces.LoadStyleStrategy=ALL, facelets.SKIP_COMMENTS=true, com.sun.faces.verifyObjects=true, javax.faces.DEFAULT_SUFFIX=.xhtml}
                                10:06:32,932 INFO [LRUMapCacheFactory] Creating LRUMap cache instance of default capacity
                                10:06:32,969 INFO [CacheManager] Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
                                10:06:32,970 INFO [LRUMapCacheFactory] Creating LRUMap cache instance using parameters: {facelets.DEVELOPMENT=true, enable-cache=false, javax.faces.CONFIG_FILES=/WEB-INF/faces-config.xml, org.richfaces.CONTROL_SKINNING_CLASSES=enable, org.richfaces.SKIN=blueSky, com.sun.faces.injectionProvider=org.jboss.web.jsf.integration.injection.JBossInjectionProvider, com.sun.faces.validateXml=true, org.richfaces.LoadScriptStrategy=ALL, org.richfaces.LoadStyleStrategy=ALL, facelets.SKIP_COMMENTS=true, com.sun.faces.verifyObjects=true, javax.faces.DEFAULT_SUFFIX=.xhtml}
                                10:06:32,970 INFO [LRUMapCacheFactory] Creating LRUMap cache instance of default capacity
                                10:06:33,010 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
                                10:06:33,206 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080
                                10:06:33,233 INFO [AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
                                10:06:33,245 INFO [Server] JBoss (MX MicroKernel) [4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)] Started in 20s:470ms


                                JBoss 5.0.0.GA Console Log
                                10:07:20,241 INFO [ServerImpl] Starting JBoss (Microcontainer)...
                                10:07:20,242 INFO [ServerImpl] Release ID: JBoss [Morpheus] 5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812041714)
                                10:07:20,243 INFO [ServerImpl] Bootstrap URL: null
                                10:07:20,243 INFO [ServerImpl] Home Dir: C:\JBoss\jboss-5.0.0.GA
                                10:07:20,243 INFO [ServerImpl] Home URL: file:/C:/JBoss/jboss-5.0.0.GA/
                                10:07:20,243 INFO [ServerImpl] Library URL: file:/C:/JBoss/jboss-5.0.0.GA/lib/
                                10:07:20,244 INFO [ServerImpl] Patch URL: null
                                10:07:20,244 INFO [ServerImpl] Common Base URL: file:/C:/JBoss/jboss-5.0.0.GA/common/
                                10:07:20,244 INFO [ServerImpl] Common Library URL: file:/C:/JBoss/jboss-5.0.0.GA/common/lib/
                                10:07:20,244 INFO [ServerImpl] Server Name: default
                                10:07:20,244 INFO [ServerImpl] Server Base Dir: C:\JBoss\jboss-5.0.0.GA\server
                                10:07:20,244 INFO [ServerImpl] Server Base URL: file:/C:/JBoss/jboss-5.0.0.GA/server/
                                10:07:20,245 INFO [ServerImpl] Server Config URL: file:/C:/JBoss/jboss-5.0.0.GA/server/default/conf/
                                10:07:20,245 INFO [ServerImpl] Server Home Dir: C:\JBoss\jboss-5.0.0.GA\server\default
                                10:07:20,245 INFO [ServerImpl] Server Home URL: file:/C:/JBoss/jboss-5.0.0.GA/server/default/
                                10:07:20,245 INFO [ServerImpl] Server Data Dir: C:\JBoss\jboss-5.0.0.GA\server\default\data
                                10:07:20,245 INFO [ServerImpl] Server Library URL: file:/C:/JBoss/jboss-5.0.0.GA/server/default/lib/
                                10:07:20,245 INFO [ServerImpl] Server Log Dir: C:\JBoss\jboss-5.0.0.GA\server\default\log
                                10:07:20,245 INFO [ServerImpl] Server Native Dir: C:\JBoss\jboss-5.0.0.GA\server\default\tmp\native
                                10:07:20,246 INFO [ServerImpl] Server Temp Dir: C:\JBoss\jboss-5.0.0.GA\server\default\tmp
                                10:07:20,246 INFO [ServerImpl] Server Temp Deploy Dir: C:\JBoss\jboss-5.0.0.GA\server\default\tmp\deploy
                                10:07:20,769 INFO [ServerImpl] Starting Microcontainer, bootstrapURL=file:/C:/JBoss/jboss-5.0.0.GA/server/default/conf/bootstrap.xml
                                10:07:21,202 INFO [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.IterableTimedVFSCache]
                                10:07:21,208 INFO [VFSCacheFactory] Using VFSCache [IterableTimedVFSCache{lifetime=1800, resolution=60}]
                                10:07:21,461 INFO [CopyMechanism] VFS temp dir: C:\JBoss\jboss-5.0.0.GA\server\default\tmp
                                10:07:21,464 INFO [ZipEntryContext] VFS force nested jars copy-mode is enabled.
                                10:07:22,356 INFO [ServerInfo] Java version: 1.6.0_10,Sun Microsystems Inc.
                                10:07:22,356 INFO [ServerInfo] Java VM: Java HotSpot(TM) 64-Bit Server VM 11.0-b15,Sun Microsystems Inc.
                                10:07:22,356 INFO [ServerInfo] OS-System: Windows Vista 6.0,amd64
                                10:07:22,385 INFO [JMXKernel] Legacy JMX core initialized
                                10:07:24,141 INFO [ProfileServiceImpl] Loading profile: default from: org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@78634521(root=C:\JBoss\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
                                10:07:24,142 INFO [ProfileImpl] Using repository:org.jboss.system.server.profileservice.repository.SerializableDeploymentRepository@78634521(root=C:\JBoss\jboss-5.0.0.GA\server, key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default])
                                10:07:24,143 INFO [ProfileServiceImpl] Loaded profile: ProfileImpl@6b8e4553{key=org.jboss.profileservice.spi.ProfileKey@143b82c3[domain=default,server=default,name=default]}
                                10:07:25,333 INFO [WebService] Using RMI server codebase: http://127.0.0.1:8083/
                                10:07:30,590 INFO [NativeServerConfig] JBoss Web Services - Stack Native Core
                                10:07:30,591 INFO [NativeServerConfig] 3.0.4.SP1
                                10:07:34,412 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://www.jboss.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://www.jboss.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
                                10:07:41,447 INFO [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://127.0.0.1/jndi/rmi://127.0.0.1:1090/jmxconnector
                                10:07:42,140 INFO [MailService] Mail Service bound to java:/Mail
                                10:07:44,071 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.
                                10:07:44,098 WARN [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
                                10:07:44,275 INFO [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
                                10:07:44,275 INFO [TransactionManagerService] Setting up property manager MBean and JMX layer
                                10:07:44,608 INFO [TransactionManagerService] Initializing recovery manager
                                10:07:44,813 INFO [TransactionManagerService] Recovery manager configured
                                10:07:44,814 INFO [TransactionManagerService] Binding TransactionManager JNDI Reference
                                10:07:44,846 INFO [TransactionManagerService] Starting transaction recovery manager
                                10:07:45,557 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-127.0.0.1-8080
                                10:07:45,562 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-127.0.0.1-8009
                                10:07:45,562 INFO [StandardService] Starting service jboss.web
                                10:07:45,566 INFO [StandardEngine] Starting Servlet Engine: JBoss Web/2.1.1.GA
                                10:07:45,629 INFO [Catalina] Server startup in 147 ms
                                10:07:45,650 INFO [TomcatDeployment] deploy, ctxPath=/web-console, vfsUrl=management/console-mgr.sar/web-console.war
                                10:07:46,734 INFO [TomcatDeployment] deploy, ctxPath=/jbossws, vfsUrl=jbossws.sar/jbossws-management.war
                                10:07:46,795 INFO [TomcatDeployment] deploy, ctxPath=/invoker, vfsUrl=http-invoker.sar/invoker.war
                                10:07:47,008 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
                                10:07:47,056 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
                                10:07:47,103 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
                                10:07:47,135 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
                                10:07:47,174 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
                                10:07:47,297 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
                                10:07:47,399 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
                                10:07:47,404 INFO [RAMJobStore] RAMJobStore initialized.
                                10:07:47,405 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
                                10:07:47,405 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
                                10:07:47,407 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
                                10:07:47,602 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=WABDS' to JNDI name 'java:WABDS'
                                10:07:47,669 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=ahm565DS' to JNDI name 'java:ahm565DS'
                                10:07:47,841 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
                                10:07:48,285 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))
                                10:07:48,335 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main
                                10:07:48,340 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
                                10:07:48,340 INFO [JobStoreCMT] Using db table-based data access locking (synchronization).
                                10:07:48,355 INFO [JobStoreCMT] Removed 0 Volatile Trigger(s).
                                10:07:48,355 INFO [JobStoreCMT] Removed 0 Volatile Job(s).
                                10:07:48,356 INFO [JobStoreCMT] JobStoreCMT initialized.
                                10:07:48,357 INFO [StdSchedulerFactory] Quartz scheduler 'JBossEJB3QuartzScheduler' initialized from an externally provided properties instance.
                                10:07:48,357 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2
                                10:07:48,360 INFO [JobStoreCMT] Freed 0 triggers from 'acquired' / 'blocked' state.
                                10:07:48,363 INFO [JobStoreCMT] Recovering 0 jobs that were in-progress at the time of the last shut-down.
                                10:07:48,363 INFO [JobStoreCMT] Recovery complete.
                                10:07:48,363 INFO [JobStoreCMT] Removed 0 'complete' triggers.
                                10:07:48,364 INFO [JobStoreCMT] Removed 0 stale fired job entries.
                                10:07:48,367 INFO [QuartzScheduler] Scheduler JBossEJB3QuartzScheduler_$_NON_CLUSTERED started.
                                10:07:48,663 ERROR [ExceptionUtil] ServerPeer[0] startService
                                com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown column 'NODE_ID' in 'where clause'
                                 at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:936)
                                 at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2985)
                                 at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1631)
                                 at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1723)
                                 at com.mysql.jdbc.Connection.execSQL(Connection.java:3256)
                                 at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1313)
                                 at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1448)
                                 at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:342)
                                 at org.jboss.messaging.core.impl.JDBCPersistenceManager.retrievePreparedTransactions(JDBCPersistenceManager.java:336)
                                 at org.jboss.messaging.core.impl.tx.TransactionRepository.loadPreparedTransactions(TransactionRepository.java:176)
                                 at org.jboss.jms.server.ServerPeer.startService(ServerPeer.java:330)
                                 at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:376)
                                 at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:269)
                                 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.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:138)
                                 at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
                                 at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:140)
                                 at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
                                 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)
                                10:07:48,665 ERROR [AbstractKernelController] Error installing to Start: name=jboss.messaging:service=ServerPeer state=Create mode=Manual requiredState=Installed
                                com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown column 'NODE_ID' in 'where clause'
                                 at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:936)
                                 at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2985)
                                 at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1631)
                                 at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1723)
                                 at com.mysql.jdbc.Connection.execSQL(Connection.java:3256)
                                 at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1313)
                                 at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1448)
                                 at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:342)
                                 at org.jboss.messaging.core.impl.JDBCPersistenceManager.retrievePreparedTransactions(JDBCPersistenceManager.java:336)
                                 at org.jboss.messaging.core.impl.tx.TransactionRepository.loadPreparedTransactions(TransactionRepository.java:176)
                                 at org.jboss.jms.server.ServerPeer.startService(ServerPeer.java:330)
                                 at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:376)
                                 at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:269)
                                 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.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:138)
                                 at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
                                 at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:140)
                                 at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
                                 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)
                                10:07:48,733 INFO [TomcatDeployment] deploy, ctxPath=/, vfsUrl=ROOT.war
                                10:07:48,809 INFO [TomcatDeployment] deploy, ctxPath=/WAB, vfsUrl=WAB.war
                                10:07:49,005 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.
                                10:07:50,557 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@39581d5e{VFSClassLoaderPolicy@47f023bb{name=vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ domain=ClassLoaderDomain@7d44f1b2{name=vfsfile:/C:/JBoss/jboss-5.0.0.GA/server/default/deploy/WAB.war/ parentPolicy=AFTER_BUT_JAVA_BEFORE parent=ClassLoaderDomain@2a8ae308{DefaultDomain}} roots=[MemoryContextHandler@1723461346[path= context=vfsmemory://5c4o12v-bh84da-fp19hyn4-1-fp19i9ez-20 real=vfsmemory://5c4o12v-bh84da-fp19hyn4-1-fp19i9ez-20], FileHandler@955411486[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@865616583[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@1363685703[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@1520129537[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@204180000[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@2121875741[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@1252136905[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@1472705382[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@2010323599[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@1148510142[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@1426937358[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@1586289857[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@1911632741[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@308635220[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@1059135035[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@390583262[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@1822859202[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@792899912[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, com.sita.wab.managed.aircraft, 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.


                                • 13. Re: Binding / JNDI / EJB
                                  jaikiran

                                   

                                  "pbaker01" wrote:

                                  btw - did you have any thoughts regarding the MDB binding issue and the start/stopDelivery problem posted above? I would love to resolve this...



                                  Honestly, i did not pay much attention to that thread. I saw the same thread in multiple forum and someone had already replied to that, so i let it pass. Let me see what you are trying to do.


                                  • 14. Re: Binding / JNDI / EJB
                                    pbaker01

                                    Hi jaikiran,
                                    Let me know if I can post any additional information.

                                    Using the "incorrect" descriptor files below I get the following display from JMX for jboss.j2ee.
                                    When I select the first entry (message-driven-bean MDB), I get a display
                                    with start/stopDelivery methods exposed.

                                    This image shows a portion of the form that is rendered when I select the first link. It contains the very elusive start/stopDelivery methods.
                                    http://picbite.com/image/13091fbtep/

                                    My goal is to use the "correct" descriptors and still be able to access the start/stopDelivery methods on the MDB.

                                    Note that this descriptor files below also generate console errors.

                                    JMX for jboss.j2ee

                                    jboss.j2ee
                                    binding=message-driven-bean,jndiName=local/SSMListener@1691815956,plugin=invoker,service=EJB
                                    jndiName=SsimEjbBean,plugin=pool,service=EJB
                                    jndiName=SsimEjbBean,service=EJB
                                    jndiName=local/AirlineEjbBean@104272522,plugin=pool,service=EJB
                                    jndiName=local/AirlineEjbBean@104272522,service=EJB
                                    jndiName=local/SSMListener@1691815956,plugin=pool,service=EJB
                                    jndiName=local/SSMListener@1691815956,service=EJB
                                    jndiName=local/SubscriberEjbBean@527666732,plugin=pool,service=EJB
                                    jndiName=local/SubscriberEjbBean@527666732,service=EJB
                                    module="WAB_EJB.jar",service=EjbModule
                                    service=EARClassLoaderDeployer
                                    service=EARDeployer


                                    We VERY much apprecaite you looking into this!!

                                    Using:
                                    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">
                                     -->
                                     <!DOCTYPE ejb-jar PUBLIC
                                     "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN"
                                     "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
                                     <ejb-jar>
                                     <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>
                                     <remote>
                                     com.sita.wab.ejb.subscriber.SubscriberEjbRemote
                                     </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>
                                     <remote>com.sita.wab.ejb.airline.AirlineEjbRemote</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>
                                     <remote>com.sita.wab.ejb.ssim.SsimEjbRemote</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>


                                    and jboss.xml
                                    <!--
                                     <jboss xmlns="http://www.jboss.com/xml/ns/javaee"
                                     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                     xsi:schemaLocation="http://www.jboss.org/j2ee/schema
                                     http://www.jboss.org/j2ee/schema/jboss_5_0.xsd"
                                     version="5.0">
                                     -->
                                     <jboss>
                                     <security-domain></security-domain>
                                     <enterprise-beans>
                                     <message-driven>
                                     <ejb-name>SSMListener</ejb-name>
                                     <configuration-name>Standard Message Driven Bean</configuration-name>
                                     <destination-jndi-name>queue/SSMQueue</destination-jndi-name>
                                     </message-driven>
                                     <session>
                                     <ejb-name>SubscriberEjb</ejb-name>
                                     <configuration-name>Standard Stateless SessionBean</configuration-name>
                                     <jndi-name>SubscriberEjb</jndi-name>
                                     </session>
                                    
                                     <session>
                                     <ejb-name>AirlineEjb</ejb-name>
                                     <configuration-name>Standard Stateless SessionBean</configuration-name>
                                     <jndi-name>AirlineEjb</jndi-name>
                                     </session>
                                    
                                     <session>
                                     <ejb-name>SsimEjbBean</ejb-name>
                                     <configuration-name>Standard Stateless SessionBean</configuration-name>
                                     <jndi-name>SsimEjbBean</jndi-name>
                                     </session>
                                    
                                     </enterprise-beans>
                                    </jboss>






                                    1 2 Previous Next