10 Replies Latest reply on Aug 1, 2011 1:44 PM by spiritfox26

    JBoss AS 7 and Richfaces 3.3.3

    spiritfox26

      I'm trying to run my app in JBoss AS7 but i'm obtaining this error when server  is started.

       

      14:52:05,648 WARN  [org.ajax4jsf.webapp.BaseXMLFilter] (MSC service thread 1-5) This version of RichFaces implementation compatible for JSF1.2, but running under JSF2.0
      14:52:05,684 INFO  [org.ajax4jsf.cache.CacheManager] (MSC service thread 1-5) Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
      14:52:05,686 INFO  [org.ajax4jsf.cache.LRUMapCacheFactory] (MSC service thread 1-5) Creating LRUMap cache instance using parameters: {com.sun.faces.responseBufferSize=500000, facelets.DEVELOPMENT=false, facelets.BUILD_BEFORE_RESTORE=false, org.ajax4jsf.COMPRESS_STYLE=true, org.ajax4jsf.VIEW_HANDLERS=com.sun.facelets.FaceletViewHandler, org.ajax4jsf.COMPRESS_SCRIPT=true, javax.faces.CONFIG_FILES=/WEB-INF/faces-managed-beans.xml, /WEB-INF/faces-navigation.xml, org.richfaces.queue.global.enabled=true, facelets.RECREATE_VALUE_EXPRESSION_ON_BUILD_BEFORE_RESTORE=false, org.richfaces.LoadScriptStrategy=ALL, org.richfaces.LoadStyleStrategy=ALL, com.sun.faces.disableVersionTracking=true, facelets.REFRESH_PERIOD=2, com.sun.faces.verifyObjects=false, javax.faces.STATE_SAVING_METHOD=server, javax.faces.DEFAULT_SUFFIX=.xhtml, com.sun.faces.enableRestoreView11Compatibility=true}
      14:52:05,686 INFO  [org.ajax4jsf.cache.LRUMapCacheFactory] (MSC service thread 1-5) Creating LRUMap cache instance of default capacity
      14:52:05,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/ITIL]] (MSC service thread 1-5) Excepción arrancando filtro richfaces: java.lang.NoClassDefFoundError: org/xml/sax/SAXException
                at org.ajax4jsf.resource.InternetResourceService.init(InternetResourceService.java:129) [richfaces-impl-3.3.3.Final.jar:4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)]
                at org.ajax4jsf.webapp.BaseFilter.init(BaseFilter.java:172) [richfaces-impl-3.3.3.Final.jar:4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)]
                at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:447) [jbossweb-7.0.0.CR4.jar:7.0.0.Final]
                at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3245) [jbossweb-7.0.0.CR4.jar:7.0.0.Final]
                at org.apache.catalina.core.StandardContext.start(StandardContext.java:3836) [jbossweb-7.0.0.CR4.jar:7.0.0.Final]
                at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentService.java:70) [jboss-as-web-7.0.0.Final.jar:7.0.0.Final]
                at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1765)
                at org.jboss.msc.service.ServiceControllerImpl$ClearTCCLTask.run(ServiceControllerImpl.java:2291)
                at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) [:1.6.0_22]
                at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [:1.6.0_22]
                at java.lang.Thread.run(Unknown Source) [:1.6.0_22]
      Caused by: java.lang.ClassNotFoundException: org.xml.sax.SAXException from [Module "itil.librerias:main" from local module loader @9f671b (roots: C:\jboss-as-web-7.0.0.Final\modules)]
                at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:191)
                at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:358)
                at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:330)
                at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:307)
                at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:101)
      

       

      Jars is the problem but not that I'm missing jar.

       

       

      Other question:

      I have this WARN

       

      14:52:05,648 WARN  [org.ajax4jsf.webapp.BaseXMLFilter] (MSC service thread 1-5) This version of RichFaces implementation compatible for JSF1.2, but running under JSF2.0
      

       

       

      How disable JSF 2.0 and enable 1.2??

       

      Regards

        • 1. Re: JBoss AS 7 and Richfaces 3.3.3
          manarh

          Create new file jboss-deployment-structure.xml and add it to your_application/WEB-INF/ in case of WAR  or your_application/META-INF in case of EAR with the following content:

          <jboss-deployment-structure>
              <deployment>
                   <exclusions>
                     <module name="javax.faces.api" slot="main"/>
                     <module name="com.sun.jsf-impl" slot="main"/>
                   </exclusions>
                   <dependencies>
                     <module name="javax.faces.api" slot="1.2"/>
                     <module name="com.sun.jsf-impl" slot="1.2"/>
                   </dependencies>
               </deployment>
             </jboss-deployment-structure>

          Definitions of exclusions turn off JSF 2 and dependencies turn on JSF 1.2 which is an alternative to default JSF 2.

          1 of 1 people found this helpful
          • 2. Re: JBoss AS 7 and Richfaces 3.3.3
            spiritfox26

            Thanks this resolve the second WARN, but i continue obtaining:

             

            ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/ITIL]] (MSC service thread 1-4) Excepción arrancando filtro richfaces: java.lang.NoClassDefFoundError: org/xml/sax/SAXException

             

            Other question:

             

            When I add jboss-deployment-structure.xml other error appear:

             

            GRAVE [javax.enterprise.resource.webcontainer.jsf.application] (MSC service thread 1-4) JSF1051: Service entry 'org.jboss.as.web.deployment.jsf.JsfInjectionProvider' does not extend DiscoverableInjectionProvider.  Entry will be ignored.

             

            this is normal?

             

            Thanks for your help!

            • 3. Re: JBoss AS 7 and Richfaces 3.3.3
              jaikiran

              Can you try this against the latest AS7 nightly build http://community.jboss.org/thread/167590?

              • 4. Re: JBoss AS 7 and Richfaces 3.3.3
                spiritfox26

                Yes i can try, what is this for?

                Sorry for my ignorance

                 

                Thanks


                • 5. Re: JBoss AS 7 and Richfaces 3.3.3
                  jaikiran

                  I think we might have fixed a JSF related issue recently in AS7 upstream. So just want to make sure you are not running into that same issue. If you still run into problems with the latest nightly build then please post the new complete exception stacktrace.

                  • 6. Re: JBoss AS 7 and Richfaces 3.3.3
                    spiritfox26

                    Sorry but i have the some error:

                     

                    12:43:02,751 INFO  [org.jboss.modules] JBoss Modules version 1.0.1.GA

                    12:43:03,125 INFO  [org.jboss.msc] JBoss MSC version 1.0.0.GA

                    12:43:03,187 INFO  [org.jboss.as] JBoss AS 7.1.0.Alpha1-SNAPSHOT "Lightning" starting

                    12:43:04,455 INFO  [org.jboss.as] creating http management service using network interface (management) port (9990) securePort (-1)

                    12:43:04,464 INFO  [org.jboss.as.logging] Removing bootstrap log handlers

                    12:43:04,494 INFO  [org.jboss.as.connector.subsystems.datasources] (Controller Boot Thread) Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver (version 5.1)

                    12:43:04,513 INFO  [org.jboss.as.clustering.infinispan.subsystem] (Controller Boot Thread) Activating Infinispan subsystem.

                    12:43:04,662 INFO  [org.jboss.as.naming] (Controller Boot Thread) Activating Naming Subsystem

                    12:43:04,673 INFO  [org.jboss.as.naming] (MSC service thread 1-2) Starting Naming Service

                    12:43:04,678 INFO  [org.jboss.as.osgi] (Controller Boot Thread) Activating OSGi Subsystem

                    12:43:04,700 INFO  [org.jboss.as.security] (Controller Boot Thread) Activating Security Subsystem

                    12:43:04,710 INFO  [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 3.2.0.Beta2

                    12:43:04,729 INFO  [org.xnio] (MSC service thread 1-2) XNIO Version 3.0.0.Beta3

                    12:43:04,742 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.0.0.Beta3

                    12:43:05,021 INFO  [org.apache.catalina.core.AprLifecycleListener] (MSC service thread 1-7) La biblioteca nativa de Apache Tomcat basada en ARP que permite un rendimiento óptimo en entornos de desarrollo no ha sido hallada en java.library.path: C:\Program Files\Java\jre6\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:/Program Files/Java/jre6/lib/i386;C:\Program Files\PC Connectivity Solution\;C:\oracle\product\10.2.0\db_1\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Broadcom\Broadcom 802.11 Network Adapter\Driver;C:\Program Files\Windows Live\Shared;;C:\Program Files\TortoiseSVN\bin;C:\Program Files\QuickTime\QTSystem\;;C:\eclipse-jee-indigo-win32\eclipse;

                    12:43:05,036 INFO  [org.jboss.as.ee] (Controller Boot Thread) Activating EE subsystem

                    12:43:05,072 INFO  [org.jboss.as.remoting] (MSC service thread 1-7) Listening on /127.0.0.1:9999

                    12:43:05,073 INFO  [org.jboss.as.jmx.JMXConnectorService] (MSC service thread 1-2) Starting remote JMX connector

                    12:43:05,121 INFO  [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-1) Arrancando Coyote HTTP/1.1 en puerto http--127.0.0.1-8080

                    12:43:05,427 INFO  [org.jboss.as.connector] (MSC service thread 1-7) Starting JCA Subsystem (JBoss IronJacamar 1.0.1.Final)

                    12:43:05,657 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) Bound data source [java:jboss/datasources/ItilDS]

                    12:43:05,957 INFO  [org.jboss.as.deployment] (MSC service thread 1-1) Started FileSystemDeploymentService for directory C:\jboss-as-7.1.0.Alpha1-SNAPSHOT\standalone\deployments

                    12:43:05,989 INFO  [org.jboss.as] (Controller Boot Thread) JBoss AS 7.1.0.Alpha1-SNAPSHOT "Lightning" started in 3534ms - Started 93 of 148 services (55 services are passive or on-demand)

                    12:43:06,054 INFO  [org.jboss.as.deployment] (DeploymentScanner-threads - 1) Found ITIL.war in deployment directory. To trigger deployment create a file called ITIL.war.dodeploy

                    12:43:06,079 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) Starting deployment of "ITIL.war"

                    12:43:06,847 INFO  [org.jboss.jpa] (MSC service thread 1-1) read persistence.xml for itil

                    12:43:07,714 INFO  [org.jboss.jpa] (MSC service thread 1-2) starting Persistence Unit Service 'ITIL.war#itil'

                    12:43:07,842 INFO  [org.hibernate.annotations.common.Version] (MSC service thread 1-2) Hibernate Commons Annotations 3.2.0.Final

                    12:43:07,848 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-2) HHH00412:Hibernate [WORKING]

                    12:43:07,849 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-2) HHH00206:hibernate.properties not found

                    12:43:07,851 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-2) HHH00021:Bytecode provider name : javassist

                    12:43:07,869 INFO  [org.hibernate.ejb.Ejb3Configuration] (MSC service thread 1-2) HHH00204:Processing PersistenceUnitInfo [

                              name: itil

                              ...]

                    12:43:07,956 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.cmdb.domain

                    12:43:07,957 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.im.dao

                    12:43:07,957 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.usuarios.dao

                    12:43:07,957 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.cmdb.dao

                    12:43:07,958 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.dao

                    12:43:07,965 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.util

                    12:43:07,966 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.domain

                    12:43:07,966 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.im.domain

                    12:43:07,966 WARN  [org.hibernate.cfg.AnnotationBinder] (MSC service thread 1-2) HHH00194:Package not found or wo package-info.java: uy.com.its.model.usuarios.domain

                    12:43:08,571 INFO  [org.hibernate.service.jdbc.connections.internal.ConnectionProviderInitiator] (MSC service thread 1-2) HHH00130:Instantiating explicit connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider

                    12:43:08,624 INFO  [org.hibernate.dialect.Dialect] (MSC service thread 1-2) HHH00400:Using dialect: org.hibernate.dialect.MySQLDialect

                    12:43:08,631 INFO  [org.hibernate.engine.jdbc.internal.LobCreatorBuilder] (MSC service thread 1-2) HHH00423:Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4

                    12:43:08,640 INFO  [org.hibernate.engine.transaction.internal.TransactionFactoryInitiator] (MSC service thread 1-2) HHH00268:Transaction strategy: org.hibernate.engine.transaction.internal.jdbc.JdbcTransactionFactory

                    12:43:08,644 INFO  [org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory] (MSC service thread 1-2) HHH00397:Using ASTQueryTranslatorFactory

                    12:43:08,683 INFO  [org.hibernate.validator.util.Version] (MSC service thread 1-2) Hibernate Validator 4.2.0.Final

                    12:43:10,167 WARN  [org.hibernate.internal.SessionFactoryImpl] (MSC service thread 1-2) HHH00008:JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()

                    12:43:10,525 INFO  [org.hibernate.dialect.Dialect] (MSC service thread 1-3) HHH00400:Using dialect: org.hibernate.dialect.MySQLDialect

                    12:43:10,526 INFO  [org.hibernate.engine.jdbc.internal.LobCreatorBuilder] (MSC service thread 1-3) HHH00423:Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4

                    12:43:10,529 INFO  [org.hibernate.engine.transaction.internal.TransactionFactoryInitiator] (MSC service thread 1-3) HHH00268:Transaction strategy: org.hibernate.engine.transaction.internal.jdbc.JdbcTransactionFactory

                    12:43:10,529 INFO  [org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory] (MSC service thread 1-3) HHH00397:Using ASTQueryTranslatorFactory

                    12:43:10,581 INFO  [stdout] (MSC service thread 1-3) Persistencia Inicializada Thu Jul 28 12:43:10 UYT 2011

                     

                     

                    12:43:10,613 INFO  [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-3) Initializing Mojarra (1.2_13-b01-FCS) for context '/ITIL'

                    12:43:11,127 GRAVE [javax.enterprise.resource.webcontainer.jsf.application] (MSC service thread 1-3) JSF1051: Service entry 'org.jboss.as.web.deployment.jsf.JsfInjectionProvider' does not extend DiscoverableInjectionProvider.  Entry will be ignored.

                    12:43:11,128 INFO  [javax.enterprise.resource.webcontainer.jsf.application] (MSC service thread 1-3) JSF1048: PostConstruct/PreDestroy annotations present.  ManagedBeans methods marked with these annotations will have said annotations processed.

                    12:43:11,383 INFO  [org.ajax4jsf.cache.CacheManager] (MSC service thread 1-3) Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory

                    12:43:11,384 INFO  [org.ajax4jsf.cache.LRUMapCacheFactory] (MSC service thread 1-3) Creating LRUMap cache instance using parameters: {com.sun.faces.responseBufferSize=500000, org.jboss.jbossfaces.JSF_CONFIG_NAME=Mojarra-1.2, facelets.DEVELOPMENT=false, facelets.BUILD_BEFORE_RESTORE=false, org.ajax4jsf.COMPRESS_STYLE=true, org.ajax4jsf.VIEW_HANDLERS=com.sun.facelets.FaceletViewHandler, org.ajax4jsf.COMPRESS_SCRIPT=true, javax.faces.CONFIG_FILES=/WEB-INF/faces-managed-beans.xml, /WEB-INF/faces-navigation.xml, org.richfaces.queue.global.enabled=true, facelets.RECREATE_VALUE_EXPRESSION_ON_BUILD_BEFORE_RESTORE=false, org.richfaces.LoadScriptStrategy=ALL, org.richfaces.LoadStyleStrategy=ALL, facelets.REFRESH_PERIOD=2, com.sun.faces.verifyObjects=false, javax.faces.STATE_SAVING_METHOD=server, javax.faces.DEFAULT_SUFFIX=.xhtml, com.sun.faces.enableRestoreView11Compatibility=true}

                    12:43:11,384 INFO  [org.ajax4jsf.cache.LRUMapCacheFactory] (MSC service thread 1-3) Creating LRUMap cache instance of default capacity

                    12:43:11,406 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/ITIL]] (MSC service thread 1-3) Excepción arrancando filtro richfaces: java.lang.NoClassDefFoundError: org/xml/sax/SAXException

                              at org.ajax4jsf.resource.InternetResourceService.init(InternetResourceService.java:129) [richfaces-impl-3.3.3.Final.jar:4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)]

                              at org.ajax4jsf.webapp.BaseFilter.init(BaseFilter.java:172) [richfaces-impl-3.3.3.Final.jar:4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)]

                              at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:447) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]

                              at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3245) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]

                              at org.apache.catalina.core.StandardContext.start(StandardContext.java:3836) [jbossweb-7.0.1.Final.jar:7.1.0.Alpha1-SNAPSHOT]

                              at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentService.java:70) [jboss-as-web-7.1.0.Alpha1-SNAPSHOT.jar:7.1.0.Alpha1-SNAPSHOT]

                              at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1765)

                              at org.jboss.msc.service.ServiceControllerImpl$ClearTCCLTask.run(ServiceControllerImpl.java:2291)

                              at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) [:1.6.0_22]

                              at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [:1.6.0_22]

                              at java.lang.Thread.run(Unknown Source) [:1.6.0_22]

                    Caused by: java.lang.ClassNotFoundException: org.xml.sax.SAXException from [Module "itil.librerias:main" from local module loader @9f671b (roots: C:\jboss-as-7.1.0.Alpha1-SNAPSHOT\modules)]

                              at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:191)

                              at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:358)

                              at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:330)

                              at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:307)

                              at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:101)

                              ... 11 more

                     

                     

                    12:43:11,409 ERROR [org.apache.catalina.core.StandardContext] (MSC service thread 1-3) Error filterStart

                    12:43:11,409 ERROR [org.apache.catalina.core.StandardContext] (MSC service thread 1-3) Falló en arranque del Contexto [/ITIL] debido a errores previos

                    12:43:11,411 INFO  [stdout] (MSC service thread 1-3) Persistencia Finalizada Thu Jul 28 12:43:11 UYT 2011

                     

                     

                    12:43:11,412 INFO  [org.jboss.web] (MSC service thread 1-3) registering web context: /ITIL

                    12:43:11,470 INFO  [org.jboss.as.server.controller] (DeploymentScanner-threads - 2) Deployed "ITIL.war"

                    • 7. Re: JBoss AS 7 and Richfaces 3.3.3
                      spiritfox26

                      I found the jar. The name is rt.jar. The problem is this lib is in C:\Program Files\Java\jre6\lib and C:\Program Files\Java\jdk1.6.0_22\jre\lib too. I think i have a wrong configuration in the server. I can copy this lib into the server in a new module but the jar size is 48 MB and i'm not sure this is a best solution.

                       

                      Anyone have a suggestion?

                       

                      Regards

                      • 8. Re: JBoss AS 7 and Richfaces 3.3.3
                        manarh

                        Agustin,

                        rt.jar is Java runtime library. Don't copy it into JBoss server.

                         

                        I don't get how you found that rt.jar is causing your error.

                        • 9. Re: JBoss AS 7 and Richfaces 3.3.3
                          spiritfox26

                          You can use this webpage to know what jars lacks.

                           

                          http://www.findjar.com

                           

                          Regards

                          • 10. Re: JBoss AS 7 and Richfaces 3.3.3
                            spiritfox26

                            I could resolve it.

                             

                            I'm add some dependencies in /sun/jdk/module.xml and works

                             

                            <path name="org/xml/sax"/>

                                                                              <path name="org/xml/sax/helpers"/>

                                                                              <path name="javax/xml/parsers"/>

                             

                            Now i have other problem but i post a new thread.

                             

                            Regards

                             

                            thanks all for your help