2 Replies Latest reply on Jul 10, 2010 6:39 AM by olasamuel

    error while reading WEB-INF components.xml

    olasamuel
      Hi All,

      I got this error (error while reading /WEB-INF/components.xml) while I was running my application. I have no clue of what happened. I would gladly appreciate it if someone can help me out in this regard. Below is the error generated from my JBoss

      Below is my components.xml


      <?xml version="1.0" encoding="UTF-8"?>
      <components xmlns="http://jboss.com/products/seam/components"
                  xmlns:core="http://jboss.com/products/seam/core"
                  xmlns:persistence="http://jboss.com/products/seam/persistence"
                  xmlns:drools="http://jboss.com/products/seam/drools"
                  xmlns:bpm="http://jboss.com/products/seam/bpm"
                  xmlns:security="http://jboss.com/products/seam/security"
                  xmlns:mail="http://jboss.com/products/seam/mail"
                  xmlns:web="http://jboss.com/products/seam/web"
                  xmlns:international="http://jboss.com/products/seam/international"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation=
                      "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.2.xsd
                       http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.2.xsd
                       http://jboss.com/products/seam/drools http://jboss.com/products/seam/drools-2.2.xsd
                       http://jboss.com/products/seam/bpm http://jboss.com/products/seam/bpm-2.2.xsd
                       http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.2.xsd
                       http://jboss.com/products/seam/mail http://jboss.com/products/seam/mail-2.2.xsd
                       http://jboss.com/products/seam/web http://jboss.com/products/seam/web-2.2.xsd
                       http://jboss.com/products/seam/international http://jboss.com/products/seam/international-2.2.xsd
                       http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.2.xsd">

         <core:init debug="true" jndi-pattern="@jndiPattern@"/>

         <core:manager concurrent-request-timeout="500"
                       conversation-timeout="120000"
                       conversation-id-parameter="cid"
                       parent-conversation-id-parameter="pid"/>
       
                      
      <!-- Load the messeages.properties from the resources -->

              <core:resource-loader>
                              <core:bundle-names>           
                                              <value>messages_en.properties</value>
                                              <value>messages_it.properties</value>
                              </core:bundle-names>
         </core:resource-loader>

         <!-- Make sure this URL pattern is the same as that used by the Faces Servlet -->
         <web:hot-deploy-filter url-pattern="*.seam"/>

         <persistence:managed-persistence-context name="entityManager" auto-create="true"
                            persistence-unit-jndi-name="java:/adminEntityManagerFactory"/>

         <drools:rule-base name="securityRules">
            <drools:rule-files>
               <value>/security.drl</value>
            </drools:rule-files>
         </drools:rule-base>

         <security:rule-based-permission-resolver security-rules="#{securityRules}"/>

         <security:identity authenticate-method="#{authenticator.authenticate}" remember-me="true"/>

         <event type="org.jboss.seam.security.notLoggedIn">
            <action execute="#{redirect.captureCurrentView}"/>
         </event>
         <event type="org.jboss.seam.security.loginSuccessful">
            <action execute="#{redirect.returnToCapturedView}"/>
         </event>

         <!-- For use with jBPM pageflow or process management -->
         <!--
         <bpm:jbpm>
            <bpm:process-definitions></bpm:process-definitions>
            <bpm:pageflow-definitions></bpm:pageflow-definitions>
         </bpm:jbpm>
         -->
        
         <mail:mail-session host="smtp.meraka.csir.co.za" port="25" tls="false"/>
        
         <web:rewrite-filter view-mapping="*.seam"/>
        
         <international:locale-config default-locale="en" supported-locales="en it"/>
        
         <international:locale-selector cookie-enabled="true"/>
        
         <!-- Generic configuration -->
      <component name="appOptions">
          <property name="defaultSkin">wine</property>
          <property name="availableSkins">
              <value>laguna</value>
              <value>darkX</value>
              <value>glassX</value>
              <value>blueSky</value>
              <value>classic</value>
              <value>ruby</value>
              <value>wine</value>
              <value>deepMarine</value>
              <value>emeraldTown</value>
              <value>japanCherry</value>
          </property>
          <property name="reservedWords">
              <value>guest</value>
              <value>admin</value>
              <value>editor</value>
              <value>root</value>
              <value>anonymous</value>
          </property>
      </component>
        

      </components>