5 Replies Latest reply on Mar 25, 2011 10:14 AM by drake2711

    UNRESOLVED Demands 'persistence.unit:unitName=...

    drake2711

      Hi

       

        i am new to JBoss and EJBs in general so plase help

       

        Every time i try to deploy my application i get erros indicateing that the persistance unit cannot be found:

      • UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **
      • 14:51:40,882 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] Error installing to Start: name=persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU state=Create: javax.persistence.PersistenceException: [PersistenceUnit: EsbMonitorPU] class or package not found

       

      and the following kind of demands:

      • and demands:
        14:51:27,287 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU; Required: Described

       

      where does this name come from?

      The persistence.xml (i had to place it in the META-INF of the EAR-file) looks like this:

       

       

      <?xml version="1.0" encoding="UTF-8"?>
      <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
        <persistence-unit name="EsbMonitorPU" transaction-type="JTA">
          <jta-data-source>java:jdbc/esb_monitor_dev</jta-data-source>
          <class>...</class>
          <exclude-unlisted-classes>false</exclude-unlisted-classes>
          <properties>
            <property name="eclipselink.ddl-generation" value="create-tables"/>
            <property name="hibernate.hbm2ddl.auto" value="update" />
            <property name="jboss.entity.manager.jndi.name" value="java:/EsbMonitorPU"/>
            <property name="jboss.entity.manager.factory.jndi.name" value="java:/EsbMonitorPUFactory"/>
          </properties>
        </persistence-unit>
      </persistence>
      

       

      This is the DS-File wich is localed in the server\default\deploy directory:

       

      <datasources>
         <local-tx-datasource>
      
            <!-- The jndi name of the DataSource, it is prefixed with java:/ -->
            <!-- Datasources are not available outside the virtual machine -->
            <jndi-name>jdbc/esb_monitor_dev</jndi-name>
      
            <!-- for in-process persistent db, saved when jboss stops. The
            org.jboss.jdbc.DerbyDatabase mbean is necessary for properly db shutdown -->
            <connection-url>jdbc:derby://localhost:3301/esb_monitor_dev;create=true</connection-url>
      
            <!-- The driver class -->
            <driver-class>org.apache.derby.jdbc.ClientDriver</driver-class>
      
            <!-- The login and password -->
            <user-name>ESB</user-name>
            <password>sa</password>
      
            <!-- The minimum connections in a pool/sub-pool. Pools are lazily constructed on first use -->
            <min-pool-size>5</min-pool-size>
      
            <!-- The maximum connections in a pool/sub-pool -->
            <max-pool-size>20</max-pool-size>
      
            <!-- The time before an unused connection is destroyed -->
            <idle-timeout-minutes>5</idle-timeout-minutes>
      
            <!-- Whether to check all statements are closed when the connection is returned to the pool,
                 this is a debugging feature that should be turned off in production -->
            <track-statements/>
      
            <!-- This mbean can be used when using in process persistent derby -->
         </local-tx-datasource>
      </datasources>
      

       

      And this is how i refer to the PUs:

       

          @PersistenceUnit(unitName="EsbMonitorPU") 
          private EntityManagerFactory factory;
      
          @PersistenceContext(unitName = "EsbMonitorPU")
          private EntityManager em;
      
          protected final EntityManager getEntityManager() {
              if (em == null) {
                  em = factory.createEntityManager();
              }
              return em;
          }
      
      

       

      I assembled all this code from various sources in the iNet but nothing works so far.

       

      Any Ideas? How ist this courios "EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU" name assembled? Is my Maven configuration responsible for that? If so i dont understand how...

       

      I use JBoss 6.0.0Final

       

      Thank you

      BTW: If i run it directly from Eclipse, everything works fine...

        • 1. UNRESOLVED Demands 'persistence.unit:unitName=...
          jaikiran
          14:51:40,882 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] Error installing to Start: name=persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU state=Create: javax.persistence.PersistenceException: [PersistenceUnit: EsbMonitorPU] class or package not found

          Please post that entire excpetion stacktrace.

           

          Also .ear/META-INF isn't a right place for persistence.xml. Move it to the META-INF of the jar within the .ear instead.

          • 2. Re: UNRESOLVED Demands 'persistence.unit:unitName=...
            drake2711

            When i place the persistence file in any other META-INF directory (as suggested elsewhere) i get a whole different kind of exception (in so far as the EsbMonitorPU cannot be refered to, which is curios as the system then does not finds it where as here it cannot be used...).

            Here the (huge) console output:

             

             

             

            14:51:26,413 INFO  [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@846918355{vfs:///C:/development/tools/jboss-6.0.0.Final/server/default/deploy/EsbMonitorEAR-0.0.1-SNAPSHOT.ear/EsbMonitorJsfProject-0.0.1-SNAPSHOT.war/}
            14:51:26,413 INFO  [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@846918355{vfs:///C:/development/tools/jboss-6.0.0.Final/server/default/deploy/EsbMonitorEAR-0.0.1-SNAPSHOT.ear/EsbMonitorJsfProject-0.0.1-SNAPSHOT.war/}
            14:51:26,428 INFO  [org.jboss.ejb3.instantiator.deployer.BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@64d091d8 into MC at org.jboss.ejb.bean.instantiator/EsbMonitorEAR-0.0.1-SNAPSHOT/EsbMonitorJsfProject-0.0.1-SNAPSHOT/RuleFacade
            14:51:26,429 INFO  [org.jboss.ejb3.instantiator.deployer.BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@64d091d8 into MC at org.jboss.ejb.bean.instantiator/EsbMonitorEAR-0.0.1-SNAPSHOT/EsbMonitorJsfProject-0.0.1-SNAPSHOT/RuleSetFacade
            14:51:26,429 INFO  [org.jboss.ejb3.instantiator.deployer.BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@64d091d8 into MC at org.jboss.ejb.bean.instantiator/EsbMonitorEAR-0.0.1-SNAPSHOT/EsbMonitorJsfProject-0.0.1-SNAPSHOT/T2BImportHelper
            14:51:26,430 INFO  [org.jboss.ejb3.instantiator.deployer.BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@64d091d8 into MC at org.jboss.ejb.bean.instantiator/EsbMonitorEAR-0.0.1-SNAPSHOT/EsbMonitorJsfProject-0.0.1-SNAPSHOT/RuleProcessor
            14:51:26,430 INFO  [org.jboss.ejb3.instantiator.deployer.BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@64d091d8 into MC at org.jboss.ejb.bean.instantiator/EsbMonitorEAR-0.0.1-SNAPSHOT/EsbMonitorJsfProject-0.0.1-SNAPSHOT/ImportT2B
            14:51:26,431 INFO  [org.jboss.ejb3.instantiator.deployer.BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@64d091d8 into MC at org.jboss.ejb.bean.instantiator/EsbMonitorEAR-0.0.1-SNAPSHOT/EsbMonitorJsfProject-0.0.1-SNAPSHOT/ImportMail
            14:51:26,431 INFO  [org.jboss.ejb3.instantiator.deployer.BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@64d091d8 into MC at org.jboss.ejb.bean.instantiator/EsbMonitorEAR-0.0.1-SNAPSHOT/EsbMonitorJsfProject-0.0.1-SNAPSHOT/DataSourceFacade
            14:51:26,432 INFO  [org.jboss.ejb3.instantiator.deployer.BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@64d091d8 into MC at org.jboss.ejb.bean.instantiator/EsbMonitorEAR-0.0.1-SNAPSHOT/EsbMonitorJsfProject-0.0.1-SNAPSHOT/OrderDataFacade
            14:51:26,432 WARN  [org.jboss.ejb3.interceptor.InterceptorInfoRepository] EJBTHREE-1852: InterceptorInfoRepository is deprecated
            14:51:27,286 INFO  [org.jboss.ejb3.deployers.JBossASKernel] Created KernelDeployment for: EsbMonitorJsfProject-0.0.1-SNAPSHOT.war
            14:51:27,286 INFO  [org.jboss.ejb3.deployers.JBossASKernel] installing bean: jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3
            14:51:27,286 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   with dependencies:
            14:51:27,287 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and demands:
            14:51:27,287 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU; Required: Described
            14:51:27,287 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss.ejb:service=EJBTimerService; Required: Described
            14:51:27,287 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-injector:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=RuleFacade; Required: Described
            14:51:27,287 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT; Required: Create
            14:51:27,287 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and supplies:
            14:51:27,288 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jndi:RuleFacade
            14:51:27,288 INFO  [org.jboss.ejb3.deployers.JBossASKernel] Added bean(jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3) to KernelDeployment of: EsbMonitorJsfProject-0.0.1-SNAPSHOT.war
            14:51:27,289 INFO  [org.jboss.ejb3.deployers.JBossASKernel] installing bean: jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3
            14:51:27,289 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   with dependencies:
            14:51:27,290 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and demands:
            14:51:27,290 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU; Required: Described
            14:51:27,290 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss.ejb:service=EJBTimerService; Required: Described
            14:51:27,290 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT; Required: Create
            14:51:27,290 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-injector:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=RuleSetFacade; Required: Described
            14:51:27,290 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and supplies:
            14:51:27,291 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jndi:RuleSetFacade
            14:51:27,291 INFO  [org.jboss.ejb3.deployers.JBossASKernel] Added bean(jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3) to KernelDeployment of: EsbMonitorJsfProject-0.0.1-SNAPSHOT.war
            14:51:27,292 INFO  [org.jboss.ejb3.deployers.JBossASKernel] installing bean: jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=T2BImportHelper,service=EJB3
            14:51:27,292 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   with dependencies:
            14:51:27,292 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and demands:
            14:51:27,292 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss.ejb:service=EJBTimerService; Required: Described
            14:51:27,293 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT; Required: Create
            14:51:27,293 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and supplies:
            14:51:27,293 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jndi:T2BImportHelper
            14:51:27,293 INFO  [org.jboss.ejb3.deployers.JBossASKernel] Added bean(jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=T2BImportHelper,service=EJB3) to KernelDeployment of: EsbMonitorJsfProject-0.0.1-SNAPSHOT.war
            14:51:27,295 INFO  [org.jboss.ejb3.deployers.JBossASKernel] installing bean: jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3
            14:51:27,295 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   with dependencies:
            14:51:27,295 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and demands:
            14:51:27,295 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU; Required: Described
            14:51:27,295 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss.ejb:service=EJBTimerService; Required: Described
            14:51:27,296 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-injector:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=RuleProcessor; Required: Described
            14:51:27,296 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT; Required: Create
            14:51:27,296 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and supplies:
            14:51:27,296 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jndi:RuleProcessor
            14:51:27,296 INFO  [org.jboss.ejb3.deployers.JBossASKernel] Added bean(jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3) to KernelDeployment of: EsbMonitorJsfProject-0.0.1-SNAPSHOT.war
            14:51:27,297 INFO  [org.jboss.ejb3.deployers.JBossASKernel] installing bean: jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3
            14:51:27,298 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   with dependencies:
            14:51:27,298 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and demands:
            14:51:27,298 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU; Required: Described
            14:51:27,298 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss.ejb:service=EJBTimerService; Required: Described
            14:51:27,298 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-injector:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=DataSourceFacade; Required: Described
            14:51:27,298 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT; Required: Create
            14:51:27,299 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and supplies:
            14:51:27,299 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jndi:DataSourceFacade
            14:51:27,299 INFO  [org.jboss.ejb3.deployers.JBossASKernel] Added bean(jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3) to KernelDeployment of: EsbMonitorJsfProject-0.0.1-SNAPSHOT.war
            14:51:27,300 INFO  [org.jboss.ejb3.deployers.JBossASKernel] installing bean: jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3
            14:51:27,301 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   with dependencies:
            14:51:27,301 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and demands:
            14:51:27,301 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU; Required: Described
            14:51:27,301 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss.ejb:service=EJBTimerService; Required: Described
            14:51:27,301 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-injector:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=OrderDataFacade; Required: Described
            14:51:27,301 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT; Required: Create
            14:51:27,301 INFO  [org.jboss.ejb3.deployers.JBossASKernel]   and supplies:
            14:51:27,301 INFO  [org.jboss.ejb3.deployers.JBossASKernel]     jndi:OrderDataFacade
            14:51:27,302 INFO  [org.jboss.ejb3.deployers.JBossASKernel] Added bean(jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3) to KernelDeployment of: EsbMonitorJsfProject-0.0.1-SNAPSHOT.war
            14:51:27,311 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] Installing container for EJB ImportT2B
            14:51:27,311 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] with dependencies: 
            14:51:27,311 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] with demands: 
            14:51:27,312 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] jboss-injector:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=ImportT2B
            14:51:27,312 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] with supplies: 
            14:51:27,318 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] Installing container for EJB ImportMail
            14:51:27,318 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] with dependencies: 
            14:51:27,318 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] with demands: 
            14:51:27,318 INFO  [org.jboss.ejb3.singleton.deployer.SingletonContainerDeployer] with supplies: 
            14:51:27,319 INFO  [org.jboss.ejb3.singleton.deployer.SingletonBeanJNDIBinderDeployer] Binding the following entries in JNDI for singleton bean: ImportT2B
            
            
            14:51:27,320 INFO  [org.jboss.ejb3.singleton.deployer.SingletonBeanJNDIBinderDeployer] Binding the following entries in JNDI for singleton bean: ImportMail
            
            
            14:51:40,545 INFO  [org.jboss.jpa.deployment.PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU
            14:51:40,547 INFO  [org.hibernate.ejb.Ejb3Configuration] Processing PersistenceUnitInfo [
                name: EsbMonitorPU
                ...]
            14:51:40,880 WARN  [org.hibernate.ejb.Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly.PersistenceUnitInfo.getNewTempClassLoader() is null.
            14:51:40,882 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] Error installing to Start: name=persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU state=Create: javax.persistence.PersistenceException: [PersistenceUnit: EsbMonitorPU] class or package not found
                at org.hibernate.ejb.Ejb3Configuration.addNamedAnnotatedClasses(Ejb3Configuration.java:1344) [:3.6.0.Final]
                at org.hibernate.ejb.Ejb3Configuration.addClassesToSessionFactory(Ejb3Configuration.java:1114) [:3.6.0.Final]
                at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:1000) [:3.6.0.Final]
                at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:685) [:3.6.0.Final]
                at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:73) [:3.6.0.Final]
                at org.jboss.jpa.builder.DefaultCEMFBuilder.build(DefaultCEMFBuilder.java:47) [:1.0.2-alpha-3]
                at org.jboss.as.jpa.scanner.HackCEMFBuilder.build(HackCEMFBuilder.java:49) [:6.0.0.Final]
                at org.jboss.jpa.deployment.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:275) [:1.0.2-alpha-3]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_24]
                at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) [:1.6.0_24]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) [:1.6.0_24]
                at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_24]
                at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:60) [jboss-reflect.jar:2.2.0.GA]
                at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:168) [jboss-reflect.jar:2.2.0.GA]
                at org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66) [jboss-reflect.jar:2.2.0.GA]
                at org.jboss.kernel.plugins.dependency.KernelControllerContextAction$JoinpointDispatchWrapper.execute(KernelControllerContextAction.java:257) [jboss-kernel.jar:2.2.0.GA]
                at org.jboss.kernel.plugins.dependency.ExecutionWrapper.execute(ExecutionWrapper.java:47) [jboss-kernel.jar:2.2.0.GA]
                at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchExecutionWrapper(KernelControllerContextAction.java:125) [jboss-kernel.jar:2.2.0.GA]
                at org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:72) [jboss-kernel.jar:2.2.0.GA]
                at org.jboss.kernel.plugins.dependency.LifecycleAction.installActionInternal(LifecycleAction.java:202) [jboss-kernel.jar:2.2.0.GA]
                at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54) [jboss-kernel.jar:2.2.0.GA]
                at org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42) [jboss-kernel.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:894) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:641) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:182) [:2.2.0.GA]
                at org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:58) [:2.2.0.GA]
                at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62) [:2.2.0.GA]
                at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:55) [:2.2.0.GA]
                at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:179) [:2.2.0.GA]
                at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1832) [:2.2.0.GA]
                at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1550) [:2.2.0.GA]
                at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1571) [:2.2.0.GA]
                at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1491) [:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:379) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:2044) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:1083) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.executeOrIncrementStateDirectly(AbstractController.java:1322) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1246) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1139) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:939) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:654) [jboss-dependency.jar:2.2.0.GA]
                at org.jboss.deployers.plugins.deployers.DeployersImpl.change(DeployersImpl.java:1983) [:2.2.0.GA]
                at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:1076) [:2.2.0.GA]
                at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:679) [:2.2.0.GA]
                at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.process(MainDeployerPlugin.java:106) [:6.0.0.Final]
                at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.process(ProfileControllerContext.java:143) [:0.2.2]
                at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.deploy(HDScanner.java:240) [:0.2.2]
                at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.complete(HDScanner.java:192) [:0.2.2]
                at org.jboss.profileservice.management.TwoPCActionWrapper.doComplete(TwoPCActionWrapper.java:57) [:0.2.2]
                at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.complete(AbstractTwoPhaseModificationAction.java:74) [:0.2.2]
                at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.prepare(AbstractTwoPhaseModificationAction.java:95) [:0.2.2]
                at org.jboss.profileservice.management.ModificationSession.prepare(ModificationSession.java:87) [:0.2.2]
                at org.jboss.profileservice.management.AbstractActionController.internalPerfom(AbstractActionController.java:234) [:0.2.2]
                at org.jboss.profileservice.management.AbstractActionController.performWrite(AbstractActionController.java:213) [:0.2.2]
                at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:150) [:0.2.2]
                at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:135) [:0.2.2]
                at org.jboss.profileservice.deployment.hotdeploy.HDScanner.scan(HDScanner.java:146) [:0.2.2]
                at org.jboss.profileservice.deployment.hotdeploy.HDScanner.run(HDScanner.java:90) [:0.2.2]
                at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) [:1.6.0_24]
                at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:317) [:1.6.0_24]
                at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:150) [:1.6.0_24]
                at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$101(ScheduledThreadPoolExecutor.java:98) [:1.6.0_24]
                at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.runPeriodic(ScheduledThreadPoolExecutor.java:180) [:1.6.0_24]
                at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:204) [:1.6.0_24]
                at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [:1.6.0_24]
                at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [:1.6.0_24]
                at java.lang.Thread.run(Thread.java:662) [:1.6.0_24]
            Caused by: java.lang.ClassNotFoundException: de.xyz.esbmonitor.entities.DataSource from BaseClassLoader@3956f14c{vfs:///C:/development/tools/jboss-6.0.0.Final/server/default/conf/jboss-service.xml}
                at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:480) [jboss-classloader.jar:2.2.0.GA]
                at java.lang.ClassLoader.loadClass(ClassLoader.java:248) [:1.6.0_24]
                at java.lang.Class.forName0(Native Method) [:1.6.0_24]
                at java.lang.Class.forName(Class.java:247) [:1.6.0_24]
                at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:170) [:3.6.0.Final]
                at org.hibernate.ejb.Ejb3Configuration.classForName(Ejb3Configuration.java:1260) [:3.6.0.Final]
                at org.hibernate.ejb.Ejb3Configuration.addNamedAnnotatedClasses(Ejb3Configuration.java:1332) [:3.6.0.Final]
                ... 75 more
            
            14:51:40,966 INFO  [org.jboss.ejb3.session.SessionSpecContainer] Starting jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=ImportMail,service=EJB3
            14:51:40,967 WARN  [org.jboss.ejb3.session.SessionSpecContainer] EJBTHREE-2126: container jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=ImportMail,service=EJB3 does not verify the businessObjectFactory
            14:51:40,967 INFO  [org.jboss.ejb3.EJBContainer] STARTED EJB: de.xyz.esbmonitor.boundary.imports.ImportMail ejbName: ImportMail
            14:51:40,967 WARN  [org.jboss.ejb3.TimerServiceContainer] EJBTHREE-2193: using deprecated TimerServiceFactory for restoring timers
            14:51:40,969 INFO  [org.jboss.ejb3.session.SessionSpecContainer] Starting jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=T2BImportHelper,service=EJB3
            14:51:40,970 INFO  [org.jboss.ejb3.EJBContainer] STARTED EJB: de.xyz.esbmonitor.boundary.imports.T2BImportHelper ejbName: T2BImportHelper
            14:51:40,970 INFO  [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
            
            
            14:51:40,970 WARN  [org.jboss.ejb3.TimerServiceContainer] EJBTHREE-2193: using deprecated TimerServiceFactory for restoring timers
            14:51:40,977 INFO  [org.jboss.ejb3.nointerface.impl.jndi.AbstractNoInterfaceViewBinder] Binding the following entry in Global JNDI for bean:T2BImportHelper
            
                EsbMonitorEAR-0.0.1-SNAPSHOT/T2BImportHelper/no-interface -> EJB3.1 no-interface view
            
            14:51:40,981 INFO  [org.jboss.ejb3.nointerface.impl.jndi.AbstractNoInterfaceViewBinder] Binding the following entry in Global JNDI for bean:ImportMail
            
                EsbMonitorEAR-0.0.1-SNAPSHOT/ImportMail/no-interface -> EJB3.1 no-interface view
            
            14:51:40,986 INFO  [org.jboss.ejb3.session.SessionSpecContainer] Starting jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=ImportT2B,service=EJB3
            14:51:40,986 WARN  [org.jboss.ejb3.session.SessionSpecContainer] EJBTHREE-2126: container jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=ImportT2B,service=EJB3 does not verify the businessObjectFactory
            14:51:40,986 INFO  [org.jboss.ejb3.EJBContainer] STARTED EJB: de.xyz.esbmonitor.boundary.imports.ImportT2B ejbName: ImportT2B
            14:51:40,986 WARN  [org.jboss.ejb3.TimerServiceContainer] EJBTHREE-2193: using deprecated TimerServiceFactory for restoring timers
            14:51:40,990 INFO  [org.jboss.ejb3.nointerface.impl.jndi.AbstractNoInterfaceViewBinder] Binding the following entry in Global JNDI for bean:ImportT2B
            
                EsbMonitorEAR-0.0.1-SNAPSHOT/ImportT2B/no-interface -> EJB3.1 no-interface view
            
            14:51:40,997 WARN  [org.jboss.profileservice.deployment.hotdeploy.HDScanner] Scan failed: org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
            
            DEPLOYMENTS MISSING DEPENDENCIES:
              Deployment "jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3,type=nointerface-view-jndi-binder" (should be in state "Installed", but is actually in state "Instantiated")
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3,type=nointerface-view-jndi-binder" (should be in state "Installed", but is actually in state "Instantiated")
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3,type=nointerface-view-jndi-binder" (should be in state "Installed", but is actually in state "Instantiated")
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3,type=nointerface-view-jndi-binder" (should be in state "Installed", but is actually in state "Instantiated")
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3" is missing the following dependencies:
                Dependency "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3>" (should be in state "Installed", but is actually in state "** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3,type=nointerface-view-jndi-binder" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3_endpoint" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3" is missing the following dependencies:
                Dependency "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3>" (should be in state "Installed", but is actually in state "** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3,type=nointerface-view-jndi-binder" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3_endpoint" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3" is missing the following dependencies:
                Dependency "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3>" (should be in state "Installed", but is actually in state "** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3,type=nointerface-view-jndi-binder" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3_endpoint" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3" is missing the following dependencies:
                Dependency "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3>" (should be in state "Installed", but is actually in state "** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3,type=nointerface-view-jndi-binder" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3_endpoint" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3" is missing the following dependencies:
                Dependency "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3>" (should be in state "Installed", but is actually in state "** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3,type=nointerface-view-jndi-binder" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3_endpoint" is missing the following dependencies:
                Dependency "jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3" (should be in state "Installed", but is actually in state "PreInstall")
              Deployment "jboss.web.deployment:war=/EsbMonitorJsfProject" is missing the following dependencies:
                Dependency "jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT" (should be in state "Installed", but is actually in state "Deploy")
              Deployment "startup-singleton-initiator:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=ImportMail" is missing the following dependencies:
                Dependency "<UNKNOWN startup-singleton-initiator:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=ImportMail>" (should be in state "Installed", but is actually in state "** UNRESOLVED Demands 'jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT' **")
              Deployment "startup-singleton-initiator:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=ImportT2B" is missing the following dependencies:
                Dependency "<UNKNOWN startup-singleton-initiator:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=ImportT2B>" (should be in state "Installed", but is actually in state "** UNRESOLVED Demands 'jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT' **")
            
            DEPLOYMENTS IN ERROR:
              Deployment "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleProcessor,service=EJB3>" is in error due to the following reason(s): ** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **
              Deployment "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleSetFacade,service=EJB3>" is in error due to the following reason(s): ** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **
              Deployment "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=DataSourceFacade,service=EJB3>" is in error due to the following reason(s): ** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **
              Deployment "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=OrderDataFacade,service=EJB3>" is in error due to the following reason(s): ** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **
              Deployment "<UNKNOWN jboss.j2ee:ear=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,jar=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,name=RuleFacade,service=EJB3>" is in error due to the following reason(s): ** UNRESOLVED Demands 'persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU' **
              Deployment "<UNKNOWN startup-singleton-initiator:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=ImportMail>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT' **
              Deployment "persistence.unit:unitName=EsbMonitorEAR-0.0.1-SNAPSHOT.ear/#EsbMonitorPU" is in error due to the following reason(s): java.lang.ClassNotFoundException: de.xyz.esbmonitor.entities.DataSource from BaseClassLoader@3956f14c{vfs:///C:/development/tools/jboss-6.0.0.Final/server/default/conf/jboss-service.xml}
              Deployment "<UNKNOWN startup-singleton-initiator:topLevelUnit=EsbMonitorEAR-0.0.1-SNAPSHOT.ear,unit=EsbMonitorJsfProject-0.0.1-SNAPSHOT.war,bean=ImportT2B>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jboss-switchboard:appName=EsbMonitorEAR-0.0.1-SNAPSHOT,module=EsbMonitorJsfProject-0.0.1-SNAPSHOT' **
            
                at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1370) [:2.2.0.GA]
                at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1316) [:2.2.0.GA]
                at org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:968) [:2.2.0.GA]
                at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.checkComplete(MainDeployerPlugin.java:82) [:6.0.0.Final]
                at org.jboss.profileservice.dependency.ProfileControllerContext$DelegateDeployer.checkComplete(ProfileControllerContext.java:138) [:0.2.2]
                at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.deploy(HDScanner.java:246) [:0.2.2]
                at org.jboss.profileservice.deployment.hotdeploy.HDScanner$HDScanAction.complete(HDScanner.java:192) [:0.2.2]
                at org.jboss.profileservice.management.TwoPCActionWrapper.doComplete(TwoPCActionWrapper.java:57) [:0.2.2]
                at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.complete(AbstractTwoPhaseModificationAction.java:74) [:0.2.2]
                at org.jboss.profileservice.management.actions.AbstractTwoPhaseModificationAction.prepare(AbstractTwoPhaseModificationAction.java:95) [:0.2.2]
                at org.jboss.profileservice.management.ModificationSession.prepare(ModificationSession.java:87) [:0.2.2]
                at org.jboss.profileservice.management.AbstractActionController.internalPerfom(AbstractActionController.java:234) [:0.2.2]
                at org.jboss.profileservice.management.AbstractActionController.performWrite(AbstractActionController.java:213) [:0.2.2]
                at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:150) [:0.2.2]
                at org.jboss.profileservice.management.AbstractActionController.perform(AbstractActionController.java:135) [:0.2.2]
                at org.jboss.profileservice.deployment.hotdeploy.HDScanner.scan(HDScanner.java:146) [:0.2.2]
                at org.jboss.profileservice.deployment.hotdeploy.HDScanner.run(HDScanner.java:90) [:0.2.2]
                at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) [:1.6.0_24]
                at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:317) [:1.6.0_24]
                at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:150) [:1.6.0_24]
                at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$101(ScheduledThreadPoolExecutor.java:98) [:1.6.0_24]
                at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.runPeriodic(ScheduledThreadPoolExecutor.java:180) [:1.6.0_24]
                at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:204) [:1.6.0_24]
                at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [:1.6.0_24]
                at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [:1.6.0_24]
                at java.lang.Thread.run(Thread.java:662) [:1.6.0_24]
            
            15:14:50,128 INFO  [org.jboss.web.tomcat.service.deployers.TomcatDeployment] deploy, ctxPath=/admin-console
            15:14:50,167 INFO  [org.apache.catalina.core.StandardContext] The listener "com.sun.faces.config.ConfigureListener" is already configured for this context. The duplicate definition has been ignored.
            15:14:50,333 INFO  [javax.enterprise.resource.webcontainer.jsf.config] Mojarra 2.0.3 ( b05) für Kontext '/admin-console' wird initialisiert.
            15:15:09,078 INFO  [javax.servlet.ServletContextListener] Welcome to Seam 2.1.0.SP1
            15:15:17,452 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/async, package: org.jboss.seam.async, prefix: org.jboss.seam.async
            15:15:17,453 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/framework, package: org.jboss.seam.framework, prefix: org.jboss.seam.core.framework
            15:15:17,453 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/theme, package: org.jboss.seam.theme, prefix: org.jboss.seam.theme
            15:15:17,454 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/security, package: org.jboss.seam.security.management, prefix: org.jboss.seam.security
            15:15:17,454 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/bpm, package: org.jboss.seam.bpm, prefix: org.jboss.seam.bpm
            15:15:17,454 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/mail, package: org.jboss.seam.mail, prefix: org.jboss.seam.mail
            15:15:17,454 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/security, package: org.jboss.seam.security, prefix: org.jboss.seam.security
            15:15:17,454 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/web, package: org.jboss.seam.web, prefix: org.jboss.seam.web
            15:15:17,455 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/captcha, package: org.jboss.seam.captcha, prefix: org.jboss.seam.captcha
            15:15:17,455 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/navigation, package: org.jboss.seam.navigation, prefix: org.jboss.seam.navigation
            15:15:17,455 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/core, package: org.jboss.seam.core, prefix: org.jboss.seam.core
            15:15:17,455 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/international, package: org.jboss.seam.international, prefix: org.jboss.seam.international
            15:15:17,455 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/cache, package: org.jboss.seam.cache, prefix: org.jboss.seam.cache
            15:15:17,455 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/jms, package: org.jboss.seam.jms, prefix: org.jboss.seam.jms
            15:15:17,456 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/ui, package: org.jboss.seam.ui, prefix: org.jboss.seam.ui
            15:15:17,456 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/transaction, package: org.jboss.seam.transaction, prefix: org.jboss.seam.transaction
            15:15:17,456 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/security, package: org.jboss.seam.security.permission, prefix: org.jboss.seam.security
            15:15:17,456 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/drools, package: org.jboss.seam.drools, prefix: org.jboss.seam.drools
            15:15:17,456 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/document, package: org.jboss.seam.document, prefix: org.jboss.seam.document
            15:15:17,456 INFO  [org.jboss.seam.init.Initialization] Namespace: http://jboss.com/products/seam/persistence, package: org.jboss.seam.persistence, prefix: org.jboss.seam.persistence
            15:15:17,464 INFO  [org.jboss.seam.init.Initialization] reading /WEB-INF/components.xml
            15:15:17,512 INFO  [org.jboss.seam.init.Initialization] reading properties from: /seam.properties
            15:15:17,514 INFO  [org.jboss.seam.init.Initialization] reading properties from: /jndi.properties
            15:15:17,518 INFO  [org.jboss.seam.init.Initialization] initializing Seam
            15:15:17,567 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.locale
            15:15:17,570 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.userPrincipal
            15:15:17,571 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.locale
            15:15:17,585 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.transaction.synchronizations
            15:15:17,586 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.manager
            15:15:17,587 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.resourceLoader
            15:15:17,587 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.persistence.persistenceProvider
            15:15:17,588 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.core.expressions
            15:15:17,589 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.parameters
            15:15:17,590 INFO  [org.jboss.seam.init.Initialization] two components with same name, higher precedence wins: org.jboss.seam.web.isUserInRole
            15:15:17,617 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.init, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Init
            15:15:17,679 INFO  [org.jboss.seam.init.Initialization] Installing components...
            15:15:17,701 INFO  [org.jboss.seam.Component] Component: DefaultPageControlSettingsUIBean, scope: APPLICATION, type: JAVA_BEAN, class: org.rhq.core.gui.model.DefaultPageControlSettingsUIBean
            15:15:17,725 INFO  [org.jboss.seam.Component] Component: addNewOpenMap, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.configuration.resource.AddNewOpenMapMemberPropertyToResourceConfigurationUIBean
            15:15:17,742 INFO  [org.jboss.seam.Component] Component: bootstrapAction, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.BootstrapAction
            15:15:17,769 INFO  [org.jboss.seam.Component] Component: commonActionUtil, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.CommonActionUtil
            15:15:17,775 INFO  [org.jboss.seam.Component] Component: configHelperFactory, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.configuration.resource.ConfigHelperFactory
            15:15:17,777 INFO  [org.jboss.seam.Component] Component: contentDisplayAction, scope: SESSION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.SingleResourceContentAction
            15:15:17,805 INFO  [org.jboss.seam.Component] Component: contentHistoryManager, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.on.embedded.bean.history.content.ContentHistoryManagerBean
            15:15:17,812 INFO  [org.jboss.seam.Component] Component: createContentBackedResourceAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.content.CreateContentBackedResourceAction
            15:15:17,826 INFO  [org.jboss.seam.Component] Component: datascrollerUI, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.DatascrollerUIBean
            15:15:17,829 INFO  [org.jboss.seam.Component] Component: debugAction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.DebugAction
            15:15:17,831 INFO  [org.jboss.seam.Component] Component: discoveryAction, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.DiscoveryAction
            15:15:17,834 INFO  [org.jboss.seam.Component] Component: exceptionAction, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.ExceptionAction
            15:15:17,845 INFO  [org.jboss.seam.Component] Component: historyManager, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.on.embedded.bean.history.operation.OperationHistoryManagerBean
            15:15:17,851 INFO  [org.jboss.seam.Component] Component: idChunkFactory, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.configuration.resource.IdChunkFactory
            15:15:17,856 INFO  [org.jboss.seam.Component] Component: inventoryEventListener, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.on.embedded.EmbeddedInventoryEventListener
            15:15:17,859 INFO  [org.jboss.seam.Component] Component: metricAction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.MetricAction
            15:15:17,871 INFO  [org.jboss.seam.Component] Component: navigationAction, scope: SESSION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.NavigationAction
            15:15:17,876 INFO  [org.jboss.seam.Component] Component: navigationContent, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.NavigationContent
            15:15:17,879 INFO  [org.jboss.seam.Component] Component: operationAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.SingleResourceOperationAction
            15:15:17,884 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.async.asynchronousExceptionHandler, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.async.AsynchronousExceptionHandler
            15:15:17,897 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.async.dispatcher, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.async.ThreadPoolDispatcher
            15:15:17,913 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.captcha.captcha, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.captcha.Captcha
            15:15:17,915 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.captcha.captchaImage, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.captcha.CaptchaImage
            15:15:17,916 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.ConversationIdGenerator, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationIdGenerator
            15:15:17,918 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.contexts, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Contexts
            15:15:17,920 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.conversation, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Conversation
            15:15:17,923 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.conversationEntries, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationEntries
            15:15:17,924 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.conversationListFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationList
            15:15:17,926 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.conversationPropagation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationPropagation
            15:15:17,927 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.conversationStackFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationStack
            15:15:17,927 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.events, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.Events
            15:15:17,929 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.expressions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesExpressions
            15:15:17,930 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.interpolator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Interpolator
            15:15:17,932 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.locale, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.Locale
            15:15:17,937 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.manager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesManager
            15:15:17,939 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.resourceBundle, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.ResourceBundle
            15:15:17,940 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.resourceLoader, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.ResourceLoader
            15:15:17,943 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.core.validators, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Validators
            15:15:17,944 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.document.documentStore, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.document.DocumentStore
            15:15:17,953 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.exception.exceptions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.exception.Exceptions
            15:15:17,964 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.dataModels, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.DataModels
            15:15:17,965 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.facesContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesContext
            15:15:17,967 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.facesPage, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesPage
            15:15:17,968 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.httpError, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.HttpError
            15:15:17,970 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.redirect, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.faces.Redirect
            15:15:17,973 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.renderer, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.FaceletsRenderer
            15:15:17,976 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.switcher, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.faces.Switcher
            15:15:17,977 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.uiComponent, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.UiComponent
            15:15:17,979 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.faces.validation, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.faces.Validation
            15:15:17,980 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.framework.currentDate, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDate
            15:15:17,983 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.framework.currentDatetime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentDatetime
            15:15:17,986 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.framework.currentTime, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.framework.CurrentTime
            15:15:17,990 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.graphicImage.image, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.Image
            15:15:17,993 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.international.localeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.international.LocaleSelector
            15:15:17,995 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.international.messagesFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.Messages
            15:15:18,003 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.international.statusMessages, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.faces.FacesMessages
            15:15:18,006 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.international.timeZone, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZone
            15:15:18,008 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.international.timeZoneSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.international.TimeZoneSelector
            15:15:18,012 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.mail.mailSession, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.mail.MailSession
            15:15:18,022 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.navigation.pages, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.navigation.Pages
            15:15:18,032 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.navigation.safeActions, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.navigation.SafeActions
            15:15:18,033 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.persistence.persistenceContexts, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.persistence.PersistenceContexts
            15:15:18,041 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.persistence.persistenceProvider, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.persistence.HibernatePersistenceProvider
            15:15:18,047 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.configurationFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.security.Configuration
            15:15:18,050 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.credentials, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.Credentials
            15:15:18,052 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.entityPermissionChecker, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.EntityPermissionChecker
            15:15:18,055 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.facesSecurityEvents, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.FacesSecurityEvents
            15:15:18,056 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.identifierPolicy, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.IdentifierPolicy
            15:15:18,060 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.identity, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.Identity
            15:15:18,069 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.identityManager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.security.management.IdentityManager
            15:15:18,071 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.management.roleAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.RoleAction
            15:15:18,074 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.management.roleSearch, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.RoleSearch
            15:15:18,087 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.management.userAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.UserAction
            15:15:18,091 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.management.userSearch, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.management.action.UserSearch
            15:15:18,094 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.passwordHash, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.security.management.PasswordHash
            15:15:18,096 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.permission.permissionSearch, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.action.PermissionSearch
            15:15:18,102 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.permissionManager, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PermissionManager
            15:15:18,107 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.permissionMapper, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PermissionMapper
            15:15:18,108 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.persistentPermissionResolver, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.security.permission.PersistentPermissionResolver
            15:15:18,112 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.security.rememberMe, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.security.RememberMe
            15:15:18,116 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.theme.themeFactory, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.theme.Theme
            15:15:18,118 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.theme.themeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.theme.ThemeSelector
            15:15:18,120 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.transaction.synchronizations, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.transaction.SeSynchronizations
            15:15:18,122 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.transaction.transaction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.transaction.Transaction
            15:15:18,128 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.EntityConverter, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.ui.EntityConverter
            15:15:18,132 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.entityIdentifierStore, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.ui.EntityIdentifierStore
            15:15:18,137 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.entityLoader, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.JpaEntityLoader
            15:15:18,146 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.facelet.faceletCompiler, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.FaceletCompiler
            15:15:18,148 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.facelet.facesContextFactory, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.RendererFacesContextFactory
            15:15:18,150 WARN  [org.jboss.seam.Component] Component class should be serializable: org.jboss.seam.ui.facelet.mockHttpSession
            15:15:18,150 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.facelet.mockHttpSession, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.HttpSessionManager
            15:15:18,151 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.facelet.mockServletContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.facelet.ServletContextManager
            15:15:18,153 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.graphicImage.graphicImageResource, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.GraphicImageResource
            15:15:18,155 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.graphicImage.graphicImageStore, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.ui.graphicImage.GraphicImageStore
            15:15:18,156 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.ui.resource.webResource, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.ui.resource.WebResource
            15:15:18,159 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.ajax4jsfFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.Ajax4jsfFilter
            15:15:18,161 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.ajax4jsfFilterInstantiator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.ui.filter.Ajax4jsfFilterInstantiator
            15:15:18,168 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.exceptionFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.ExceptionFilter
            15:15:18,171 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.identityFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.IdentityFilter
            15:15:18,172 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.isUserInRole, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.IsUserInRole
            15:15:18,196 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.loggingFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.LoggingFilter
            15:15:18,198 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.multipartFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.MultipartFilter
            15:15:18,200 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.parameters, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.faces.Parameters
            15:15:18,201 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.redirectFilter, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.web.RedirectFilter
            15:15:18,203 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.servletContexts, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.web.ServletContexts
            15:15:18,204 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.session, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.web.Session
            15:15:18,206 INFO  [org.jboss.seam.Component] Component: org.jboss.seam.web.userPrincipal, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.faces.UserPrincipal
            15:15:18,207 INFO  [org.jboss.seam.Component] Component: resourceAction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.ResourceAction
            15:15:18,211 INFO  [org.jboss.seam.Component] Component: resourceCRUDAction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.SingleResourceAction
            15:15:18,219 INFO  [org.jboss.seam.Component] Component: resourceConfigurationUIBean, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.configuration.resource.ResourceConfigurationUIBean
            15:15:18,223 WARN  [org.jboss.seam.Component] Component class should be serializable: sessionInfoAction
            15:15:18,224 INFO  [org.jboss.seam.Component] Component: sessionInfoAction, scope: SESSION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.SessionInfoAction
            15:15:18,232 INFO  [org.jboss.seam.Component] Component: summaryAction, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.SummaryAction
            15:15:18,238 INFO  [org.jboss.seam.Component] Component: tableManager, scope: PAGE, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.TableManager
            15:15:18,241 INFO  [org.jboss.seam.Component] Component: templateDropDownPopulator, scope: EVENT, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.configuration.resource.TemplateDropDownPopulator
            15:15:18,247 INFO  [org.jboss.seam.Component] Component: updateBackingContentAction, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.on.embedded.ui.content.UpdateBackingContentAction
            15:15:18,262 INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.persistentPermissionResolver
            15:15:18,266 WARN  [org.jboss.seam.security.permission.PersistentPermissionResolver] no permission store available - please install a PermissionStore with the name 'org.jboss.seam.security.jpaPermissionStore' if persistent permissions are required.
            15:15:18,266 INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.permissionMapper
            15:15:18,267 INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.navigation.pages
            15:15:18,295 INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.entityPermissionChecker
            15:15:18,296 INFO  [org.jboss.seam.contexts.Contexts] starting up: bootstrapAction
            15:15:18,326 INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.facesSecurityEvents
            15:15:18,327 INFO  [org.jboss.seam.init.Initialization] done initializing Seam
            15:15:18,332 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.loggingFilter
            15:15:18,332 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.ajax4jsfFilter
            15:15:18,387 INFO  [org.ajax4jsf.cache.CacheManager] Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
            15:15:18,394 INFO  [org.ajax4jsf.cache.LRUMapCacheFactory] Creating LRUMap cache instance using parameters: {facelets.DEVELOPMENT=true, facelets.LIBRARIES=/WEB-INF/on.component.taglib.xml, org.jboss.on.embedded.LazyStartupListener=org.jboss.seam.servlet.SeamListener, com.sun.faces.duplicateJARPattern=^tmp\d+(\S*\.jar), javax.faces.CONFIG_FILES=/WEB-INF/navigation.xml, org.richfaces.SKIN=jboss-console, com.sun.faces.injectionProvider=org.jboss.web.jsf.integration.injection.JBossDelegatingInjectionProvider, resteasy.unwrapped.exceptions=javax.ejb.EJBException, javax.faces.STATE_SAVING_METHOD=server, javax.faces.DEFAULT_SUFFIX=.xhtml}
            15:15:18,394 INFO  [org.ajax4jsf.cache.LRUMapCacheFactory] Creating LRUMap cache instance of default capacity
            15:15:18,434 INFO  [org.ajax4jsf.cache.CacheManager] Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
            15:15:18,434 INFO  [org.ajax4jsf.cache.LRUMapCacheFactory] Creating LRUMap cache instance using parameters: {facelets.DEVELOPMENT=true, facelets.LIBRARIES=/WEB-INF/on.component.taglib.xml, org.jboss.on.embedded.LazyStartupListener=org.jboss.seam.servlet.SeamListener, com.sun.faces.duplicateJARPattern=^tmp\d+(\S*\.jar), javax.faces.CONFIG_FILES=/WEB-INF/navigation.xml, org.richfaces.SKIN=jboss-console, com.sun.faces.injectionProvider=org.jboss.web.jsf.integration.injection.JBossDelegatingInjectionProvider, resteasy.unwrapped.exceptions=javax.ejb.EJBException, javax.faces.STATE_SAVING_METHOD=server, javax.faces.DEFAULT_SUFFIX=.xhtml}
            15:15:18,435 INFO  [org.ajax4jsf.cache.LRUMapCacheFactory] Creating LRUMap cache instance of default capacity
            15:15:18,435 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.redirectFilter
            15:15:18,435 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.exceptionFilter
            15:15:18,435 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.multipartFilter
            15:15:18,435 INFO  [org.jboss.seam.servlet.SeamFilter] Initializing filter: org.jboss.seam.web.identityFilter
            15:15:18,926 INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.identity
            15:15:18,930 INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.web.session
            15:15:18,930 INFO  [org.jboss.seam.contexts.Contexts] starting up: sessionInfoAction
            15:15:20,568 WARN  [org.jboss.seam.web.ExceptionFilter] handling uncaught exception: javax.servlet.ServletException: null source
                at javax.faces.webapp.FacesServlet.service(FacesServlet.java:321) [:2.0.3-]
                at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:324) [:6.0.0.Final]
                at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:6.0.0.Final]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) [:2.1.0.SP1]
                at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:38) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:86) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:206) [:3.3.3.Final]
                at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:290) [:3.3.3.Final]
                at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:388) [:3.3.3.Final]
                at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:515) [:3.3.3.Final]
                at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:56) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) [:2.1.0.SP1]
                at org.jboss.on.embedded.LazyStartupFilter.doFilter(LazyStartupFilter.java:87) [:1.4.0.SP2]
                at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:274) [:6.0.0.Final]
                at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:6.0.0.Final]
                at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [:6.0.0.Final]
                at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) [:6.0.0.Final]
                at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:181) [:6.0.0.Final]
                at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:88) [:6.0.0.Final]
                at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:100) [:6.0.0.Final]
                at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) [:6.0.0.Final]
                at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [:6.0.0.Final]
                at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158) [:6.0.0.Final]
                at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [:6.0.0.Final]
                at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final]
                at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:362) [:6.0.0.Final]
                at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [:6.0.0.Final]
                at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:654) [:6.0.0.Final]
                at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951) [:6.0.0.Final]
                at java.lang.Thread.run(Thread.java:662) [:1.6.0_24]
            Caused by: java.lang.IllegalArgumentException: null source
                at java.util.EventObject.<init>(EventObject.java:38) [:1.6.0_24]
                at javax.faces.event.SystemEvent.<init>(SystemEvent.java:67) [:2.0.3-]
                at javax.faces.event.ComponentSystemEvent.<init>(ComponentSystemEvent.java:69) [:2.0.3-]
                at javax.faces.event.PostRestoreStateEvent.<init>(PostRestoreStateEvent.java:69) [:2.0.3-]
                at com.sun.faces.lifecycle.RestoreViewPhase.deliverPostRestoreStateEvent(RestoreViewPhase.java:256) [:2.0.3-]
                at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:245) [:2.0.3-]
                at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:97) [:2.0.3-]
                at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:107) [:2.0.3-]
                at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:114) [:2.0.3-]
                at javax.faces.webapp.FacesServlet.service(FacesServlet.java:308) [:2.0.3-]
                ... 38 more
            
            15:15:20,576 WARN  [org.jboss.seam.web.ExceptionFilter] exception root cause: java.lang.IllegalArgumentException: null source
                at java.util.EventObject.<init>(EventObject.java:38) [:1.6.0_24]
                at javax.faces.event.SystemEvent.<init>(SystemEvent.java:67) [:2.0.3-]
                at javax.faces.event.ComponentSystemEvent.<init>(ComponentSystemEvent.java:69) [:2.0.3-]
                at javax.faces.event.PostRestoreStateEvent.<init>(PostRestoreStateEvent.java:69) [:2.0.3-]
                at com.sun.faces.lifecycle.RestoreViewPhase.deliverPostRestoreStateEvent(RestoreViewPhase.java:256) [:2.0.3-]
                at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:245) [:2.0.3-]
                at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:97) [:2.0.3-]
                at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:107) [:2.0.3-]
                at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:114) [:2.0.3-]
                at javax.faces.webapp.FacesServlet.service(FacesServlet.java:308) [:2.0.3-]
                at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:324) [:6.0.0.Final]
                at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:6.0.0.Final]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) [:2.1.0.SP1]
                at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:38) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:86) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:206) [:3.3.3.Final]
                at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:290) [:3.3.3.Final]
                at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:388) [:3.3.3.Final]
                at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:515) [:3.3.3.Final]
                at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:56) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) [:2.1.0.SP1]
                at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) [:2.1.0.SP1]
                at org.jboss.on.embedded.LazyStartupFilter.doFilter(LazyStartupFilter.java:87) [:1.4.0.SP2]
                at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:274) [:6.0.0.Final]
                at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:6.0.0.Final]
                at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [:6.0.0.Final]
                at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) [:6.0.0.Final]
                at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:181) [:6.0.0.Final]
                at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:88) [:6.0.0.Final]
                at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:100) [:6.0.0.Final]
                at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) [:6.0.0.Final]
                at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [:6.0.0.Final]
                at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158) [:6.0.0.Final]
                at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [:6.0.0.Final]
                at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:53) [:6.0.0.Final]
                at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:362) [:6.0.0.Final]
                at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [:6.0.0.Final]
                at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:654) [:6.0.0.Final]
                at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951) [:6.0.0.Final]
                at java.lang.Thread.run(Thread.java:662) [:1.6.0_24]
            
            15:15:20,582 WARN  [org.jboss.seam.web.ExceptionFilter] running exception handlers
            
            Thank you
            • 3. Re: UNRESOLVED Demands 'persistence.unit:unitName=...
              jaikiran
              Caused by: java.lang.ClassNotFoundException: de.xyz.esbmonitor.entities.DataSource from BaseClassLoader@3956f14c{vfs:///C:/development/tools/jboss-6.0.0.Final/server/default/conf/jboss-service.xml}
                  at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:480) [jboss-classloader.jar:2.2.0.GA]
                  at java.lang.ClassLoader.loadClass(ClassLoader.java:248) [:1.6.0_24]
                  at java.lang.Class.forName0(Native Method) [:1.6.0_24]
                  at java.lang.Class.forName(Class.java:247) [:1.6.0_24]
                  at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:170) [:3.6.0.Final]
                  at org.hibernate.ejb.Ejb3Configuration.classForName(Ejb3Configuration.java:1260) [:3.6.0.Final]
                  at org.hibernate.ejb.Ejb3Configuration.addNamedAnnotatedClasses(Ejb3Configuration.java:1332) [:3.6.0.Final]
                  ... 75 more

              That looks like a known bug https://issues.jboss.org/browse/JBAS-8872

               

              Where is that de.xyz.esbmonitor.entities.DataSource located?

              • 4. Re: UNRESOLVED Demands 'persistence.unit:unitName=...
                drake2711

                I created this project with eclipse. The structure is as follows

                • EsbMointorCommon
                  Contains some classes used in all other projects
                • EsbMonitorClient
                  Contains the EJB's (at least it was so created by Eclipse)
                • EsbMonitorJPA
                  Contains the Entities (includeing DataSource)
                • EsbMonitorJSF
                  Contains the web files
                • EsbMonitorEAR
                  Combines all others into a singel EAR file (the META-INF contains the persistence.xml)

                 

                Originally the persistence.xml was located in the JPA project but then a whole set of other exceptions occured. Maybe stubid question: I was under the impression that the ejb-jar.xml is not needed anymore but i found examples where a PU is refered to by one. Do i have to create such a xml somewhere?

                 

                Thanks four your help!

                • 5. UNRESOLVED Demands 'persistence.unit:unitName=...
                  drake2711

                  OK, solved. I recreated the projects with Maven and copied the sourcecode to the new projects. Somewhere along the line converting the Eclipse EE projects to Maven projects did not work.

                   

                  Eclipse Issue...

                   

                  Thanks anyway for your time!