1 2 Previous Next 19 Replies Latest reply on Aug 23, 2013 9:01 AM by amitsingh308 Go to original post
      • 15. Re: war file deployment error in jboss as 7.1.1
        nancymarido

        I have removed the JBOSS provided JAX-RS implementation from standalone.xml.

        Do i need to remove the below given entries from some where else also???

         

        <extension module="org.jboss.as.jaxrs"/> 

        <subsystem xmlns="urn:jboss:domain:jaxrs:1.0"/>

         

        • 16. Re: war file deployment error in jboss as 7.1.1
          nickarls

          I'm surprised the pom-addition had any effect at all since it was a deployment error. I was referring to adding a module dependency in the war MANIFEST.MF or through the jboss-deployment-structure.xml. With the said xml file you can also disable the entire JAX-RS subsystem so it doesn't interfere with the jersey usage. Although I'm not sure that feature was available in 7.1.1.

          • 17. Re: war file deployment error in jboss as 7.1.1
            nancymarido

            Thanks Nicklas, for your timely help and your valuable inputs...

            The issue has been resolved...

             

            The web.xml should be as below:

             

            <?xml version="1.0" encoding="UTF-8"?>

            <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">

              <display-name><<Aplcn>></display-name>

              <welcome-file-list>

                <welcome-file>index.html</welcome-file>

                <welcome-file>index.htm</welcome-file>

                <welcome-file>index.jsp</welcome-file>

              </welcome-file-list>

               <servlet>

                    <servlet-name>dispatcher</servlet-name>

                    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

                    <load-on-startup>1</load-on-startup>

                </servlet>

                <servlet-mapping>

                    <servlet-name>dispatcher</servlet-name>

                    <url-pattern>*.htm</url-pattern>

                </servlet-mapping>

             

             

                  <servlet>

                <servlet-name>Jersey REST Service</servlet-name>

                <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>

                <!--<init-param>

                  <param-name>com.sun.jersey.config.property.packages</param-name>

                  <param-value><<package>></param-value>

                </init-param>-->

             

                <load-on-startup>1</load-on-startup>

              </servlet>

              <servlet-mapping>

                <servlet-name>Jersey REST Service</servlet-name>

                <url-pattern>/rest/*</url-pattern>

              </servlet-mapping>

            </web-app>

            • 18. Re: war file deployment error in jboss as 7.1.1
              nancymarido

              Removing or commenting the below given stuffs from <JBOSS_HOME>/configuration/standalone.xml,

               

              <extension module="org.jboss.as.jaxrs"/>

              <subsystem xmlns="urn:jboss:domain:jaxrs:1.0"/>

               

               

              Will impact other application if that needs a jax-rs scan...

               

              Instead add the below given snippet in web.xml specific to the application...

               

              <context-param>

                                  <param-name>resteasy.scan</param-name>

                                  <param-value>false</param-value>

                        </context-param>

                        <context-param>

                                  <param-name>resteasy.scan.resources</param-name>

                                  <param-value>false</param-value>

                        </context-param>

                        <context-param>

                                  <param-name>resteasy.scan.providers</param-name>

                                  <param-value>false</param-value>

                        </context-param>

               

              This works...

              • 19. Re: war file deployment error in jboss as 7.1.1
                amitsingh308

                I am also facing a problem in Deploying MYApp.war file in JBoss server its showing me following error:

                 

                Calling C:\jboss-as-web-7.0.2.Final\bin\standalone.conf.bat

                JAVA_HOME is not set. Unexpected results may occur.

                Set JAVA_HOME to the directory of your local JDK to avoid this message.

                ===============================================================================

                 

                  JBoss Bootstrap Environment

                 

                  JBOSS_HOME: C:\jboss-as-web-7.0.2.Final

                 

                  JAVA: java

                 

                  JAVA_OPTS: -Dprogram.name=standalone.bat -Xms64M -Xmx512M -XX:MaxPermSize=256M

                -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000

                -Dorg.jboss.resolver.warning=true -Djboss.modules.system.pkgs=org.jboss.byteman

                -server

                 

                ===============================================================================

                 

                12:36:15,260 INFO  [org.jboss.modules] JBoss Modules version 1.0.2.GA

                12:36:15,437 INFO  [org.jboss.msc] JBoss MSC version 1.0.1.GA

                12:36:15,474 INFO  [org.jboss.as] JBoss AS 7.0.2.Final "Arc" starting

                12:36:16,032 WARN  [org.jboss.as] No security realm defined for native managemen

                t service, all access will be unrestricted.

                12:36:16,038 INFO  [org.jboss.as] creating http management service using network

                interface (management) port (9990)

                12:36:16,039 WARN  [org.jboss.as] No security realm defined for http management

                service, all access will be unrestricted.

                12:36:16,045 INFO  [org.jboss.as.logging] Removing bootstrap log handlers

                12:36:16,057 INFO  [org.jboss.as.connector.subsystems.datasources] (Controller B

                oot Thread) Deploying JDBC-compliant driver class org.h2.Driver (version 1.2)

                12:36:16,068 INFO  [org.jboss.as.clustering.infinispan.subsystem] (Controller Bo

                ot Thread) Activating Infinispan subsystem.

                12:36:16,130 INFO  [org.jboss.as.naming] (Controller Boot Thread) JBAS011800: Ac

                tivating Naming Subsystem

                12:36:16,138 INFO  [org.jboss.as.naming] (MSC service thread 1-4) JBAS011802: St

                arting Naming Service

                12:36:16,143 INFO  [org.jboss.as.osgi] (Controller Boot Thread) JBAS011910: Acti

                vating OSGi Subsystem

                12:36:16,166 INFO  [org.jboss.as.security] (Controller Boot Thread) Activating S

                ecurity Subsystem

                12:36:16,170 INFO  [org.jboss.remoting] (MSC service thread 1-6) JBoss Remoting

                version 3.2.0.Beta2

                12:36:16,178 INFO  [org.xnio] (MSC service thread 1-6) XNIO Version 3.0.0.Beta3

                12:36:16,188 INFO  [org.xnio.nio] (MSC service thread 1-6) XNIO NIO Implementati

                on Version 3.0.0.Beta3

                12:36:16,325 INFO  [org.apache.catalina.core.AprLifecycleListener] (MSC service

                thread 1-8) The Apache Tomcat Native library which allows optimal performance in

                production environments was not found on the java.library.path: C:\Windows\syst

                em32;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files (x8

                6)\Common Files\Intel\Shared Files\cpp\bin\Intel64;C:\Windows\system32;C:\Window

                s;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Progra

                m Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQ

                L Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\

                Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\

                Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Mi

                crosoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;%PROGRAMFILES%\Internet

                Explorer;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Pr

                ogram Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files

                \Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft\Web Platform In

                staller\;.

                12:36:16,338 INFO  [org.jboss.as.ee] (Controller Boot Thread) Activating EE subs

                ystem

                12:36:16,364 INFO  [org.jboss.as.remoting] (MSC service thread 1-6) Listening on

                /127.0.0.1:9999

                12:36:16,375 INFO  [org.jboss.as.jmx.JMXConnectorService] (MSC service thread 1-

                4) Starting remote JMX connector

                12:36:16,393 INFO  [org.apache.coyote.http11.Http11Protocol] (MSC service thread

                1-5) Starting Coyote HTTP/1.1 on http--127.0.0.1-8081

                12:36:16,505 INFO  [org.jboss.as.connector] (MSC service thread 1-1) Starting JC

                A Subsystem (JBoss IronJacamar 1.0.3.Final)

                12:36:16,536 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service

                thread 1-5) Bound data source [java:jboss/datasources/ExampleDS]

                12:36:16,749 INFO  [org.jboss.as.deployment] (MSC service thread 1-7) Started Fi

                leSystemDeploymentService for directory C:\jboss-as-web-7.0.2.Final\standalone\d

                eployments

                12:36:16,770 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) Sta

                rting deployment of "srdhportal.war"

                12:36:23,366 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry mchange-commons-java-0.2.2.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/c3p0-0.9.2-pre4.jar"  does not point to a v

                alid jar for a Class-Path reference.

                12:36:23,369 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhpor

                tal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Class

                -Path reference.

                12:36:23,370 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry endorsed/jaxb-api-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/c

                ontent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid j

                ar for a Class-Path reference.

                12:36:23,371 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry endorsed/geronimo-jaxws_2.2_spec-1.1.jar in "/C:/jboss-as-web-7.0.

                2.Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point

                to a valid jar for a Class-Path reference.

                12:36:23,372 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-impl-2.2.4-1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,373 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-impl-2.1.13.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,374 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-xjc-2.2.4-1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,375 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-xjc-2.1.13.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,376 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-common-utilities-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,377 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xmlschema-core-2.0.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/cont

                ent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,378 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry woodstox-core-asl-4.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/c

                ontent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid j

                ar for a Class-Path reference.

                12:36:23,379 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry stax2-api-3.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,380 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-stax-api_1.0_spec-1.0.1.jar in "/C:/jboss-as-web-7.0.2.Fi

                nal/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to

                a valid jar for a Class-Path reference.

                12:36:23,381 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-annotation_1.0_spec-1.1.1.jar in "/C:/jboss-as-web-7.0.2.

                Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point t

                o a valid jar for a Class-Path reference.

                12:36:23,382 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-api-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,383 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-common-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/co

                ntent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid ja

                r for a Class-Path reference.

                12:36:23,384 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry velocity-1.7.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdh

                portal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,385 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry commons-collections-3.2.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin

                /content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,386 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry commons-lang-2.6.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,387 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry wsdl4j-1.6.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdh

                portal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,388 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-xjc-2.2.4-1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,390 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-impl-2.2.4-1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,391 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-api-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srd

                hportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a C

                lass-Path reference.

                12:36:23,392 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry neethi-3.0.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdh

                portal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,393 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-activation_1.1_spec-1.1.jar in "/C:/jboss-as-web-7.0.2.Fi

                nal/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to

                a valid jar for a Class-Path reference.

                12:36:23,394 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-core-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,395 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-javamail_1.4_spec-1.7.1.jar in "/C:/jboss-as-web-7.0.2.Fi

                nal/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to

                a valid jar for a Class-Path reference.

                12:36:23,396 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry saaj-api-1.3.4.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,397 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-ws-metadata_2.0_spec-1.1.3.jar in "/C:/jboss-as-web-7.0.2

                .Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point

                to a valid jar for a Class-Path reference.

                12:36:23,398 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-validator-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin

                /content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,399 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-wsdlto-core-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,400 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-jaxws_2.2_spec-1.1.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,401 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-misctools-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin

                /content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,402 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-wsdlto-frontend-jaxws-2.5.2.jar in "/C:/jboss-as-web-7.0

                .2.Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not poin

                t to a valid jar for a Class-Path reference.

                12:36:23,403 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xml-resolver-1.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,404 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-wsdlto-databinding-jaxb-2.5.2.jar in "/C:/jboss-as-web-7

                .0.2.Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not po

                int to a valid jar for a Class-Path reference.

                12:36:23,405 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-corba-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/con

                tent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,406 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-bindings-corba-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,407 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-frontend-jaxws-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,408 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry asm-3.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhporta

                l.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Class-P

                ath reference.

                12:36:23,409 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-bindings-soap-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,410 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-databinding-jaxb-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final

                /bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a v

                alid jar for a Class-Path reference.

                12:36:23,411 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-bindings-xml-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin

                /content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,412 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-frontend-simple-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,413 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-transports-http-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,414 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-transports-common-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Fina

                l/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a

                valid jar for a Class-Path reference.

                12:36:23,415 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-web-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,416 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry aopalliance-1.0.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,417 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-beans-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,418 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-core-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Final/bin

                /content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,419 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-asm-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,420 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry commons-logging-1.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/con

                tent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,421 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-context-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,422 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-aop-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,423 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-expression-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Fin

                al/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a

                valid jar for a Class-Path reference.

                12:36:23,424 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-ws-addr-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/cont

                ent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,425 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry saaj-impl-1.3.12.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,426 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry mimepull-1.4.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdh

                portal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,427 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry antlr-2.7.7.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhp

                ortal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cla

                ss-Path reference.

                12:36:23,427 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-wsdlto-frontend-javascript-2.5.2.jar in "/C:/jboss-as-we

                b-7.0.2.Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not

                point to a valid jar for a Class-Path reference.

                12:36:23,428 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-javascript-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/c

                ontent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid j

                ar for a Class-Path reference.

                12:36:23,429 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-tools-java2ws-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/c

                ontent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid j

                ar for a Class-Path reference.

                12:36:23,430 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-databinding-aegis-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Fina

                l/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a

                valid jar for a Class-Path reference.

                12:36:23,431 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-xjc-dv-2.4.0.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,432 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-xjc-ts-2.4.0.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,433 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-xjc-bug671-2.4.0.jar in "/C:/jboss-as-web-7.0.2.Final/bin/cont

                ent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,434 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-xjc-boolean-2.4.0.jar in "/C:/jboss-as-web-7.0.2.Final/bin/con

                tent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,435 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-management-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/c

                ontent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid j

                ar for a Class-Path reference.

                12:36:23,436 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-transports-local-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final

                /bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a v

                alid jar for a Class-Path reference.

                12:36:23,437 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-transports-http-jetty-2.5.2.jar in "/C:/jboss-as-web-7.0.2.

                Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point t

                o a valid jar for a Class-Path reference.

                12:36:23,438 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jetty-server-7.5.4.v20111024.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,439 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jetty-continuation-7.5.4.v20111024.jar in "/C:/jboss-as-web-7.0.2.

                Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point t

                o a valid jar for a Class-Path reference.

                12:36:23,440 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jetty-http-7.5.4.v20111024.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,441 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jetty-io-7.5.4.v20111024.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,442 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jetty-util-7.5.4.v20111024.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,443 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jetty-security-7.5.4.v20111024.jar in "/C:/jboss-as-web-7.0.2.Fina

                l/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a

                valid jar for a Class-Path reference.

                12:36:23,444 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry slf4j-api-1.6.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,445 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-servlet_2.5_spec-1.1.2.jar in "/C:/jboss-as-web-7.0.2.Fin

                al/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a

                valid jar for a Class-Path reference.

                12:36:23,446 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry slf4j-jdk14-1.6.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,447 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-transports-jms-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,448 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-jms_1.1_spec-1.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,449 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-jms-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,450 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-tx-3.0.6.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Final/bin/c

                ontent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid j

                ar for a Class-Path reference.

                12:36:23,451 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-bindings-object-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,452 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-bindings-coloc-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,453 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-bindings-http-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,454 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jra-1.0-alpha-4.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,455 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-wstx-msv-validation-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final

                /bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a v

                alid jar for a Class-Path reference.

                12:36:23,456 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry msv-core-2011.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,457 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xsdlib-2010.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srd

                hportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a C

                lass-Path reference.

                12:36:23,458 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry relaxngDatatype-20020414.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,459 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry isorelax-20030108.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,460 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-databinding-xmlbeans-2.5.2.jar in "/C:/jboss-as-web-7.0.2.F

                inal/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to

                a valid jar for a Class-Path reference.

                12:36:23,461 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xmlbeans-2.5.0.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,462 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-databinding-jibx-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final

                /bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a v

                alid jar for a Class-Path reference.

                12:36:23,463 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jibx-bind-1.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,464 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jibx-run-1.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,465 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry joda-time-1.6.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,466 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xpp3-1.1.3.4.O.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,467 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry bcel-5.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhport

                al.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Class-

                Path reference.

                12:36:23,468 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry regexp-1.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhpo

                rtal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Clas

                s-Path reference.

                12:36:23,469 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry log4j-1.2.15.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdh

                portal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,470 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry mail-1.4.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhport

                al.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Class-

                Path reference.

                12:36:23,471 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry activation-1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,472 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry qdox-1.6.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhpo

                rtal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Clas

                s-Path reference.

                12:36:23,473 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry ant-1.5.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhpor

                tal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Class

                -Path reference.

                12:36:23,474 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jmock-1.0.0.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhp

                ortal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cla

                ss-Path reference.

                12:36:23,475 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jibx-schema-1.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,476 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jibx-extras-1.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,477 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry dom4j-1.6.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhp

                ortal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cla

                ss-Path reference.

                12:36:23,478 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xml-apis-1.0.b2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,479 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jdom-1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhport

                al.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Class-

                Path reference.

                12:36:23,481 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jibx-tools-1.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,482 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry core-3.3.0-v_771.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,483 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry resources-3.3.0-v20070604.jar in "/C:/jboss-as-web-7.0.2.Final/bin

                /content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,484 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry expressions-3.3.0-v20070606-0010.jar in "/C:/jboss-as-web-7.0.2.Fi

                nal/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to

                a valid jar for a Class-Path reference.

                12:36:23,485 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry runtime-3.3.100-v20070530.jar in "/C:/jboss-as-web-7.0.2.Final/bin

                /content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,486 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry osgi-3.3.0-v20070530.jar in "/C:/jboss-as-web-7.0.2.Final/bin/cont

                ent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,487 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jobs-3.3.0-v20070423.jar in "/C:/jboss-as-web-7.0.2.Final/bin/cont

                ent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,488 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry registry-3.3.0-v20070522.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,489 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry preferences-3.2.100-v20070522.jar in "/C:/jboss-as-web-7.0.2.Final

                /bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a v

                alid jar for a Class-Path reference.

                12:36:23,490 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry contenttype-3.2.100-v20070319.jar in "/C:/jboss-as-web-7.0.2.Final

                /bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a v

                alid jar for a Class-Path reference.

                12:36:23,491 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry filesystem-1.1.0-v20070606.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,492 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry text-3.3.0-v20070606-0010.jar in "/C:/jboss-as-web-7.0.2.Final/bin

                /content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,493 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry commands-3.3.0-I20070605-0010.jar in "/C:/jboss-as-web-7.0.2.Final

                /bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a v

                alid jar for a Class-Path reference.

                12:36:23,494 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry common-3.3.0-v20070426.jar in "/C:/jboss-as-web-7.0.2.Final/bin/co

                ntent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid ja

                r for a Class-Path reference.

                12:36:23,496 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-databinding-sdo-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,497 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry tuscany-sdo-impl-1.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/co

                ntent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid ja

                r for a Class-Path reference.

                12:36:23,498 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry tuscany-sdo-lib-1.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/con

                tent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,499 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry tuscany-sdo-api-r2.1-1.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,500 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry common-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdh

                portal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,501 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry ecore-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhp

                ortal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cla

                ss-Path reference.

                12:36:23,502 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry ecore-change-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conten

                t/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar fo

                r a Class-Path reference.

                12:36:23,503 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry ecore-xmi-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,504 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xsd-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhpor

                tal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Class

                -Path reference.

                12:36:23,505 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry backport-util-concurrent-3.0.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,506 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry stax-api-1.0.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,507 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry tuscany-sdo-tools-1.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/c

                ontent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid j

                ar for a Class-Path reference.

                12:36:23,508 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry codegen-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srd

                hportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a C

                lass-Path reference.

                12:36:23,509 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry codegen-ecore-2.2.3.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conte

                nt/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar f

                or a Class-Path reference.

                12:36:23,510 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-ws-rm-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conten

                t/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar fo

                r a Class-Path reference.

                12:36:23,511 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-ws-policy-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/co

                ntent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid ja

                r for a Class-Path reference.

                12:36:23,512 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-ws-mex-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conte

                nt/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar f

                or a Class-Path reference.

                12:36:23,513 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-ws-security-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,514 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry wss4j-1.6.4.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhp

                ortal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cla

                ss-Path reference.

                12:36:23,516 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xmlsec-1.4.6.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdh

                portal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,517 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry opensaml-2.5.1-1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,518 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry openws-1.4.2-1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,519 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xmltooling-1.3.2-1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conten

                t/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar fo

                r a Class-Path reference.

                12:36:23,520 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry xalan-2.7.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhp

                ortal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cla

                ss-Path reference.

                12:36:23,521 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry serializer-2.7.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,522 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-frontend-js-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/

                content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid

                jar for a Class-Path reference.

                12:36:23,523 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry js-1.7R2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhport

                al.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Class-

                Path reference.

                12:36:23,524 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-rt-frontend-jaxrs-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,525 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jsr311-api-1.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,526 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jettison-1.3.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,527 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-bundle-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,528 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry commons-codec-1.4.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,529 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-services-sts-core-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,530 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry ehcache-core-2.4.4.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conten

                t/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar fo

                r a Class-Path reference.

                12:36:23,531 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry spring-ldap-core-1.3.1.RELEASE.jar in "/C:/jboss-as-web-7.0.2.Fina

                l/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a

                valid jar for a Class-Path reference.

                12:36:23,532 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry hazelcast-1.9.4.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,533 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-services-wsn-api-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/bi

                n/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a vali

                d jar for a Class-Path reference.

                12:36:23,534 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry cxf-services-wsn-core-2.5.2.jar in "/C:/jboss-as-web-7.0.2.Final/b

                in/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a val

                id jar for a Class-Path reference.

                12:36:23,535 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry activemq-core-5.4.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conte

                nt/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar f

                or a Class-Path reference.

                12:36:23,536 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry commons-logging-api-1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/c

                ontent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid j

                ar for a Class-Path reference.

                12:36:23,537 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry activeio-core-3.1.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conte

                nt/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar f

                or a Class-Path reference.

                12:36:23,539 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry geronimo-j2ee-management_1.1_spec-1.0.1.jar in "/C:/jboss-as-web-7

                .0.2.Final/bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not po

                int to a valid jar for a Class-Path reference.

                12:36:23,540 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry kahadb-5.4.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdh

                portal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,541 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry activemq-protobuf-1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/con

                tent/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar

                for a Class-Path reference.

                12:36:23,542 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry commons-net-2.0.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/s

                rdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,543 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jasypt-1.6.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhpo

                rtal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Clas

                s-Path reference.

                12:36:23,544 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry icu4j-4.0.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhp

                ortal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cla

                ss-Path reference.

                12:36:23,545 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry FastInfoset-1.2.9.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,546 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry abdera-core-1.1.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,547 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry abdera-i18n-1.1.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,548 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry abdera-parser-1.1.2.jar in "/C:/jboss-as-web-7.0.2.Final/bin/conte

                nt/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar f

                or a Class-Path reference.

                12:36:23,549 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry axiom-impl-1.2.10.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content

                /srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,550 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry axiom-api-1.2.10.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/

                srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for

                a Class-Path reference.

                12:36:23,551 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxen-1.1.1.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhp

                ortal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a valid jar for a Cla

                ss-Path reference.

                12:36:23,552 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry abdera-extensions-json-1.1.2.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,553 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry abdera-extensions-main-1.1.2.jar in "/C:/jboss-as-web-7.0.2.Final/

                bin/content/srdhportal.war/WEB-INF/lib/cxf-manifest.jar"  does not point to a va

                lid jar for a Class-Path reference.

                12:36:23,554 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-api.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhport

                al.war/WEB-INF/lib/jaxb-xjc-2.2.4-1.jar"  does not point to a valid jar for a Cl

                ass-Path reference.

                12:36:23,555 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jaxb-impl.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhpor

                tal.war/WEB-INF/lib/jaxb-xjc-2.2.4-1.jar"  does not point to a valid jar for a C

                lass-Path reference.

                12:36:23,556 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry jsr173_1.0_api.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/sr

                dhportal.war/WEB-INF/lib/jaxb-xjc-2.2.4-1.jar"  does not point to a valid jar fo

                r a Class-Path reference.

                12:36:23,557 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-3) Cla

                ss Path entry activation.jar in "/C:/jboss-as-web-7.0.2.Final/bin/content/srdhpo

                rtal.war/WEB-INF/lib/jaxb-xjc-2.2.4-1.jar"  does not point to a valid jar for a

                Class-Path reference.

                12:36:23,647 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "org.springframework.context.Applicat

                ionContext,org.springframework.beans.BeansException" for service type "org.apach

                e.cxf.bus.factory"

                12:36:23,652 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootElementProvider$App" for service type "javax.ws.rs.ext.MessageBodyRe

                ader"

                12:36:23,654 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootElementProvider$Text" for service type "javax.ws.rs.ext.MessageBodyR

                eader"

                12:36:23,656 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootElementProvider$General" for service type "javax.ws.rs.ext.MessageBo

                dyReader"

                12:36:23,657 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLJAXBElementProvider$App" for service type "javax.ws.rs.ext.MessageBodyRe

                ader"

                12:36:23,659 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLJAXBElementProvider$Text" for service type "javax.ws.rs.ext.MessageBodyR

                eader"

                12:36:23,660 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLJAXBElementProvider$General" for service type "javax.ws.rs.ext.MessageBo

                dyReader"

                12:36:23,662 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLListElementProvider$App" for service type "javax.ws.rs.ext.MessageBodyRe

                ader"

                12:36:23,663 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLListElementProvider$Text" for service type "javax.ws.rs.ext.MessageBodyR

                eader"

                12:36:23,664 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLListElementProvider$General" for service type "javax.ws.rs.ext.MessageBo

                dyReader"

                12:36:23,666 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.SourceProvider$StreamSourceReader" for service type "javax.ws.rs.ext.Messag

                eBodyReader"

                12:36:23,668 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.SourceProvider$SAXSourceReader" for service type "javax.ws.rs.ext.MessageBo

                dyReader"

                12:36:23,669 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.SourceProvider$DOMSourceReader" for service type "javax.ws.rs.ext.MessageBo

                dyReader"

                12:36:23,671 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootObjectProvider$App" for service type "javax.ws.rs.ext.MessageBodyRea

                der"

                12:36:23,673 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootObjectProvider$Text" for service type "javax.ws.rs.ext.MessageBodyRe

                ader"

                12:36:23,675 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootObjectProvider$General" for service type "javax.ws.rs.ext.MessageBod

                yReader"

                12:36:23,677 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootElementProvider$App" for service type "javax.ws.rs.ext.MessageBodyWr

                iter"

                12:36:23,679 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootElementProvider$Text" for service type "javax.ws.rs.ext.MessageBodyW

                riter"

                12:36:23,681 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLRootElementProvider$General" for service type "javax.ws.rs.ext.MessageBo

                dyWriter"

                12:36:23,683 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLJAXBElementProvider$App" for service type "javax.ws.rs.ext.MessageBodyWr

                iter"

                12:36:23,684 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLJAXBElementProvider$Text" for service type "javax.ws.rs.ext.MessageBodyW

                riter"

                12:36:23,686 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLJAXBElementProvider$General" for service type "javax.ws.rs.ext.MessageBo

                dyWriter"

                12:36:23,688 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLListElementProvider$App" for service type "javax.ws.rs.ext.MessageBodyWr

                iter"

                12:36:23,689 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLListElementProvider$Text" for service type "javax.ws.rs.ext.MessageBodyW

                riter"

                12:36:23,691 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.XMLListElementProvider$General" for service type "javax.ws.rs.ext.MessageBo

                dyWriter"

                12:36:23,692 WARN  [org.jboss.as.server.deployment.service-loader] (MSC service

                thread 1-3) Encountered invalid class name "com.sun.jersey.core.impl.provider.en

                tity.SourceProvider$SourceWriter" for service type "javax.ws.rs.ext.MessageBodyW

                riter"

                12:36:23,710 INFO  [org.jboss.as.jpa] (MSC service thread 1-8) added javax.persi

                stence.api dependency to srdhportal.war

                12:36:23,871 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.headers.HeaderManagerImpl/bus on class org.apache.cxf.headers.

                HeaderManagerImpl since it's missing a "lookup" (or "mappedName") value and isn'

                t of any known type

                12:36:23,873 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.bus.resource.ResourceManagerImpl/bus on class org.apache.cxf.b

                us.resource.ResourceManagerImpl since it's missing a "lookup" (or "mappedName")

                value and isn't of any known type

                12:36:23,875 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.wsdl11.WSDLManagerImpl/bus on class org.apache.cxf.wsdl11.WSDL

                ManagerImpl since it's missing a "lookup" (or "mappedName") value and isn't of a

                ny known type

                12:36:23,876 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.buslifecycle.CXFBusLifeCycleManager/bus on class org.apache.cx

                f.buslifecycle.CXFBusLifeCycleManager since it's missing a "lookup" (or "mappedN

                ame") value and isn't of any known type

                12:36:23,878 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.jaxws.context.WebServiceContextResourceResolver/bus on class o

                rg.apache.cxf.jaxws.context.WebServiceContextResourceResolver since it's missing

                a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,881 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.catalog.OASISCatalogManager/bus on class org.apache.cxf.catalo

                g.OASISCatalogManager since it's missing a "lookup" (or "mappedName") value and

                isn't of any known type

                12:36:23,883 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.ws.rm.RMManager/bus on class org.apache.cxf.ws.rm.RMManager si

                nce it's missing a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,884 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.ws.policy.PolicyEngineImpl/bus on class org.apache.cxf.ws.poli

                cy.PolicyEngineImpl since it's missing a "lookup" (or "mappedName") value and is

                n't of any known type

                12:36:23,886 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.ws.policy.PolicyInterceptorProviderRegistryImpl/bus on class o

                rg.apache.cxf.ws.policy.PolicyInterceptorProviderRegistryImpl since it's missing

                a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,888 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.ws.policy.AssertionBuilderRegistryImpl/bus on class org.apache

                .cxf.ws.policy.AssertionBuilderRegistryImpl since it's missing a "lookup" (or "m

                appedName") value and isn't of any known type

                12:36:23,889 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.ws.policy.attachment.external.DomainExpressionBuilderRegistry/

                bus on class org.apache.cxf.ws.policy.attachment.external.DomainExpressionBuilde

                rRegistry since it's missing a "lookup" (or "mappedName") value and isn't of any

                known type

                12:36:23,892 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.ws.security.sts.provider.SecurityTokenServiceImpl/context on c

                lass org.apache.cxf.ws.security.sts.provider.SecurityTokenServiceImpl since it's

                missing a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,894 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.ws.security.sts.provider.SecurityTokenServiceProvider/context

                on class org.apache.cxf.ws.security.sts.provider.SecurityTokenServiceProvider si

                nce it's missing a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,897 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.endpoint.ServerRegistryImpl/bus on class org.apache.cxf.endpoi

                nt.ServerRegistryImpl since it's missing a "lookup" (or "mappedName") value and

                isn't of any known type

                12:36:23,899 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.workqueue.WorkQueueManagerImpl/bus on class org.apache.cxf.wor

                kqueue.WorkQueueManagerImpl since it's missing a "lookup" (or "mappedName") valu

                e and isn't of any known type

                12:36:23,901 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.jaxrs.interceptor.AttachmentInputInterceptor/supportedTypes on

                class org.apache.cxf.jaxrs.interceptor.AttachmentInputInterceptor since it's mi

                ssing a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,903 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.binding.BindingFactoryManagerImpl/bus on class org.apache.cxf.

                binding.BindingFactoryManagerImpl since it's missing a "lookup" (or "mappedName"

                ) value and isn't of any known type

                12:36:23,905 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.binding.AbstractBaseBindingFactory/bus on class org.apache.cxf

                .binding.AbstractBaseBindingFactory since it's missing a "lookup" (or "mappedNam

                e") value and isn't of any known type

                12:36:23,907 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.binding.corba.runtime.OrbConfigurer/bus on class org.apache.cx

                f.binding.corba.runtime.OrbConfigurer since it's missing a "lookup" (or "mappedN

                ame") value and isn't of any known type

                12:36:23,908 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: cxf on class org.apache.cxf.binding.soap.SoapTransportFactory since it's miss

                ing a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,910 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: cxf on class org.apache.cxf.databinding.AbstractDataBinding since it's missin

                g a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,911 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: cxf on class org.apache.cxf.transport.jms.JMSTransportFactory since it's miss

                ing a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,913 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.transport.DestinationFactoryManagerImpl/bus on class org.apach

                e.cxf.transport.DestinationFactoryManagerImpl since it's missing a "lookup" (or

                "mappedName") value and isn't of any known type

                12:36:23,914 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: cxf on class org.apache.cxf.transport.http_jetty.JettyHTTPServerEngineFactory

                since it's missing a "lookup" (or "mappedName") value and isn't of any known ty

                pe

                12:36:23,915 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.transport.ConduitInitiatorManagerImpl/bus on class org.apache.

                cxf.transport.ConduitInitiatorManagerImpl since it's missing a "lookup" (or "map

                pedName") value and isn't of any known type

                12:36:23,917 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.transport.http.HTTPTransportFactory/bus on class org.apache.cx

                f.transport.http.HTTPTransportFactory since it's missing a "lookup" (or "mappedN

                ame") value and isn't of any known type

                12:36:23,919 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.transport.http.QueryHandlerRegistryImpl/bus on class org.apach

                e.cxf.transport.http.QueryHandlerRegistryImpl since it's missing a "lookup" (or

                "mappedName") value and isn't of any known type

                12:36:23,921 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: cxf on class org.apache.cxf.transport.local.LocalTransportFactory since it's

                missing a "lookup" (or "mappedName") value and isn't of any known type

                12:36:23,922 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.javascript.JavascriptQueryHandler/bus on class org.apache.cxf.

                javascript.JavascriptQueryHandler since it's missing a "lookup" (or "mappedName"

                ) value and isn't of any known type

                12:36:23,924 WARN  [org.jboss.as.ee.component.deployers.ResourceInjectionAnnotat

                ionParsingProcessor] (MSC service thread 1-6) Can't handle @Resource for ENC nam

                e: org.apache.cxf.service.factory.FactoryBeanListenerManager/bus on class org.ap

                ache.cxf.service.factory.FactoryBeanListenerManager since it's missing a "lookup

                " (or "mappedName") value and isn't of any known type

                12:36:24,107 INFO  [org.jboss.as.jpa] (MSC service thread 1-4) Deployment has it

                s own Persistence Provider class org.hibernate.ejb.HibernatePersistence

                12:36:24,190 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1

                -4) Deploying JDBC-compliant driver class com.ibm.db2.jcc.DB2Driver (version 4.1

                3)

                12:36:24,194 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1

                -4) Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver (version 5.1

                )

                12:36:24,196 WARN  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1

                -4) Unable to instantiate driver class "com.mysql.jdbc.Driver": org.jboss.msc.se

                rvice.DuplicateServiceException: Service jboss.jdbc-driver.srdhportal_war is alr

                eady registered

                12:36:24,219 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1

                -4) Deploying JDBC-compliant driver class oracle.jdbc.OracleDriver (version 11.2

                )

                12:36:24,221 WARN  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1

                -4) Unable to instantiate driver class "oracle.jdbc.OracleDriver": org.jboss.msc

                .service.DuplicateServiceException: Service jboss.jdbc-driver.srdhportal_war is

                already registered

                12:36:24,227 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1

                -4) Deploying JDBC-compliant driver class com.microsoft.sqlserver.jdbc.SQLServer

                Driver (version 4.0)

                12:36:24,229 WARN  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1

                -4) Unable to instantiate driver class "com.microsoft.sqlserver.jdbc.SQLServerDr

                iver": org.jboss.msc.service.DuplicateServiceException: Service jboss.jdbc-drive

                r.srdhportal_war is already registered

                12:36:24,387 INFO  [stdout] (MSC service thread 1-4) log4j: reset attribute= "fa

                lse".

                12:36:24,388 INFO  [stdout] (MSC service thread 1-4) log4j: Threshold ="null".

                12:36:24,390 INFO  [stdout] (MSC service thread 1-4) log4j: Retreiving an instan

                ce of org.apache.log4j.Logger.

                12:36:24,391 INFO  [stdout] (MSC service thread 1-4) log4j: Setting [org.apache]

                additivity to [true].

                12:36:24,393 INFO  [stdout] (MSC service thread 1-4) log4j: Level value for org.

                apache is  [ERROR].

                12:36:24,394 INFO  [stdout] (MSC service thread 1-4) log4j: org.apache level set

                to ERROR

                12:36:24,395 INFO  [stdout] (MSC service thread 1-4) log4j: Retreiving an instan

                ce of org.apache.log4j.Logger.

                12:36:24,396 INFO  [stdout] (MSC service thread 1-4) log4j: Setting [org.springf

                ramework] additivity to [true].

                12:36:24,396 INFO  [stdout] (MSC service thread 1-4) log4j: Level value for org.

                springframework is  [ERROR].

                12:36:24,397 INFO  [stdout] (MSC service thread 1-4) log4j: org.springframework

                level set to ERROR

                12:36:24,398 INFO  [stdout] (MSC service thread 1-4) log4j: Retreiving an instan

                ce of org.apache.log4j.Logger.

                12:36:24,398 INFO  [stdout] (MSC service thread 1-4) log4j: Setting [java.sql.Co

                nnection] additivity to [true].

                12:36:24,399 INFO  [stdout] (MSC service thread 1-4) log4j: Level value for java

                .sql.Connection is  [ERROR].

                12:36:24,399 INFO  [stdout] (MSC service thread 1-4) log4j: java.sql.Connection

                level set to ERROR

                12:36:24,400 INFO  [stdout] (MSC service thread 1-4) log4j: Retreiving an instan

                ce of org.apache.log4j.Logger.

                12:36:24,401 INFO  [stdout] (MSC service thread 1-4) log4j: Setting [java.sql.St

                atement] additivity to [true].

                12:36:24,402 INFO  [stdout] (MSC service thread 1-4) log4j: Level value for java

                .sql.Statement is  [ERROR].

                12:36:24,402 INFO  [stdout] (MSC service thread 1-4) log4j: java.sql.Statement l

                evel set to ERROR

                12:36:24,403 INFO  [stdout] (MSC service thread 1-4) log4j: Retreiving an instan

                ce of org.apache.log4j.Logger.

                12:36:24,404 INFO  [stdout] (MSC service thread 1-4) log4j: Setting [java.sql.Pr

                eparedStatement] additivity to [true].

                12:36:24,404 INFO  [stdout] (MSC service thread 1-4) log4j: Level value for java

                .sql.PreparedStatement is  [ERROR].

                12:36:24,405 INFO  [stdout] (MSC service thread 1-4) log4j: java.sql.PreparedSta

                tement level set to ERROR

                12:36:24,406 INFO  [stdout] (MSC service thread 1-4) log4j: Retreiving an instan

                ce of org.apache.log4j.Logger.

                12:36:24,406 INFO  [stdout] (MSC service thread 1-4) log4j: Setting [java.sql.Re

                sultSet] additivity to [true].

                12:36:24,407 INFO  [stdout] (MSC service thread 1-4) log4j: Level value for java

                .sql.ResultSet is  [ERROR].

                12:36:24,408 INFO  [stdout] (MSC service thread 1-4) log4j: java.sql.ResultSet l

                evel set to ERROR

                12:36:24,408 INFO  [stdout] (MSC service thread 1-4) log4j: Level value for root

                is  [ALL].

                12:36:24,409 INFO  [stdout] (MSC service thread 1-4) log4j: root level set to AL

                L

                12:36:24,410 INFO  [stdout] (MSC service thread 1-4) log4j: Class name: [org.apa

                che.log4j.RollingFileAppender]

                12:36:24,421 INFO  [stdout] (MSC service thread 1-4) log4j: Setting property [fi

                le] to [C:/SRDH_Setup/log/srdhportal.log].

                12:36:24,422 INFO  [stdout] (MSC service thread 1-4) log4j: Setting property [ap

                pend] to [false].

                12:36:24,422 INFO  [stdout] (MSC service thread 1-4) log4j: Setting property [im

                mediateFlush] to [true].

                12:36:24,423 INFO  [stdout] (MSC service thread 1-4) log4j: Setting property [ma

                ximumFileSize] to [10485760].

                12:36:24,424 INFO  [stdout] (MSC service thread 1-4) log4j: Setting property [ma

                xBackupIndex] to [10].

                12:36:24,424 INFO  [stdout] (MSC service thread 1-4) log4j: Parsing layout of cl

                ass: "org.apache.log4j.PatternLayout"

                12:36:24,429 INFO  [stdout] (MSC service thread 1-4) log4j: Setting property [co

                nversionPattern] to [%d{MM/dd''yy HH:mm:ss}> %-5p [%c] [%M] [%L] %m (%t) (%X{USE

                R_ID}|%X{CLIENT_IP})%n].

                12:36:24,431 INFO  [stdout] (MSC service thread 1-4) log4j: setFile called: C:/S

                RDH_Setup/log/srdhportal.log, false

                12:36:24,432 INFO  [stdout] (MSC service thread 1-4) log4j: setFile ended

                12:36:24,432 INFO  [stdout] (MSC service thread 1-4) log4j: Adding appender name

                d [FILE] to category [root].

                12:36:24,433 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[default-

                host].[/srdhportal]] (MSC service thread 1-4) Initializing Spring root WebApplic

                ationContext

                12:36:25,096 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-

                host].[/srdhportal]] (MSC service thread 1-4) Exception sending context initiali

                zed event to listener instance of class org.springframework.web.context.ContextL

                oaderListener: org.springframework.beans.factory.BeanCreationException: Error cr

                eating bean with name 'commonSessionFactory' defined in ServletContext resource

                [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exce

                ption is org.hibernate.InvalidMappingException: Could not parse mapping document

                from input stream

                        at org.springframework.beans.factory.support.AbstractAutowireCapableBean

                Factory.initializeBean(AbstractAutowireCapableBeanFactory.java:1412) [spring-bea

                ns-3.0.2.RELEASE.jar:]

                        at org.springframework.beans.factory.support.AbstractAutowireCapableBean

                Factory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519) [spring-beans-

                3.0.2.RELEASE.jar:]

                        at org.springframework.beans.factory.support.AbstractAutowireCapableBean

                Factory.createBean(AbstractAutowireCapableBeanFactory.java:456) [spring-beans-3.

                0.2.RELEASE.jar:]

                        at org.springframework.beans.factory.support.AbstractBeanFactory$1.getOb

                ject(AbstractBeanFactory.java:291) [spring-beans-3.0.2.RELEASE.jar:]

                        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistr

                y.getSingleton(DefaultSingletonBeanRegistry.java:222) [spring-beans-3.0.2.RELEAS

                E.jar:]

                        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBe

                an(AbstractBeanFactory.java:288) [spring-beans-3.0.2.RELEASE.jar:]

                        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean

                (AbstractBeanFactory.java:190) [spring-beans-3.0.2.RELEASE.jar:]

                        at org.springframework.beans.factory.support.DefaultListableBeanFactory.

                preInstantiateSingletons(DefaultListableBeanFactory.java:546) [spring-beans-3.0.

                2.RELEASE.jar:]

                        at org.springframework.context.support.AbstractApplicationContext.finish

                BeanFactoryInitialization(AbstractApplicationContext.java:872) [spring-context-3

                .0.2.RELEASE.jar:]

                        at org.springframework.context.support.AbstractApplicationContext.refres

                h(AbstractApplicationContext.java:423) [spring-context-3.0.2.RELEASE.jar:]

                        at org.springframework.web.context.ContextLoader.createWebApplicationCon

                text(ContextLoader.java:276) [spring-web-3.0.2.RELEASE.jar:]

                        at org.springframework.web.context.ContextLoader.initWebApplicationConte

                xt(ContextLoader.java:197) [spring-web-3.0.2.RELEASE.jar:]

                        at org.springframework.web.context.ContextLoaderListener.contextInitiali

                zed(ContextLoaderListener.java:47) [spring-web-3.0.2.RELEASE.jar:]

                        at org.apache.catalina.core.StandardContext.contextListenerStart(Standar

                dContext.java:3368) [jbossweb-7.0.1.Final.jar:7.0.2.Final]

                        at org.apache.catalina.core.StandardContext.start(StandardContext.java:3

                821) [jbossweb-7.0.1.Final.jar:7.0.2.Final]

                        at org.jboss.as.web.deployment.WebDeploymentService.start(WebDeploymentS

                ervice.java:70) [jboss-as-web-7.0.2.Final.jar:7.0.2.Final]

                        at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(Se

                rviceControllerImpl.java:1824)

                        at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceCont

                rollerImpl.java:1759)

                        at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [:1

                .7.0_21]

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

                1.7.0_21]

                        at java.lang.Thread.run(Unknown Source) [:1.7.0_21]

                Caused by: org.hibernate.InvalidMappingException: Could not parse mapping docume

                nt from input stream

                        at org.hibernate.cfg.Configuration.addInputStream(Configuration.java:508

                ) [hibernate3.jar:]

                        at org.springframework.orm.hibernate3.LocalSessionFactoryBean.buildSessi

                onFactory(LocalSessionFactoryBean.java:677) [spring-orm-3.0.2.RELEASE.jar:]

                        at org.springframework.orm.hibernate3.AbstractSessionFactoryBean.afterPr

                opertiesSet(AbstractSessionFactoryBean.java:211) [spring-orm-3.0.2.RELEASE.jar:]

                 

                        at org.springframework.beans.factory.support.AbstractAutowireCapableBean

                Factory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1469) [spring-

                beans-3.0.2.RELEASE.jar:]

                        at org.springframework.beans.factory.support.AbstractAutowireCapableBean

                Factory.initializeBean(AbstractAutowireCapableBeanFactory.java:1409) [spring-bea

                ns-3.0.2.RELEASE.jar:]

                        ... 20 more

                Caused by: org.dom4j.DocumentException: C:\jboss-as-web-7.0.2.Final\bin\hibernat

                e-mapping-3.0.dtd (The system cannot find the file specified) Nested exception:

                C:\jboss-as-web-7.0.2.Final\bin\hibernate-mapping-3.0.dtd (The system cannot fin

                d the file specified)

                        at org.dom4j.io.SAXReader.read(SAXReader.java:484) [dom4j-1.6.1.jar:]

                        at org.hibernate.cfg.Configuration.addInputStream(Configuration.java:499

                ) [hibernate3.jar:]

                        ... 24 more

                 

                12:36:25,143 ERROR [org.apache.catalina.core.StandardContext] (MSC service threa

                d 1-4) Error listenerStart

                12:36:25,144 ERROR [org.apache.catalina.core.StandardContext] (MSC service threa

                d 1-4) Context [/srdhportal] startup failed due to previous errors

                12:36:25,154 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[default-

                host].[/srdhportal]] (MSC service thread 1-4) Closing Spring root WebApplication

                Context

                12:36:25,157 INFO  [org.jboss.web] (MSC service thread 1-4) registering web cont

                ext: /srdhportal

                12:36:25,159 INFO  [org.jboss.as] (MSC service thread 1-2) JBoss AS 7.0.2.Final

                "Arc" started in 10102ms - Started 270 of 327 services (57 services are passive

                or on-demand)

                12:36:25,188 INFO  [org.jboss.as.server.controller] (DeploymentScanner-threads -

                2) Deployed "srdhportal.war"

                Nancy Marido wrote:

                 

                Do we really need to consider the WARN also?
                Does it make any impact on the application???

                 

                14:12:20,047 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,058 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,067 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,077 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,100 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,109 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,121 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,126 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,133 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,141 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$SourceWriter' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,147 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,153 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,161 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,169 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,175 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,182 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,188 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,195 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,200 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,207 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,214 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,220 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,226 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,234 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,239 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,246 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,254 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,262 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,271 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,280 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,287 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,293 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,299 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,307 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,313 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,321 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,329 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,337 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,345 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,354 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,362 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,367 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,374 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,381 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,388 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,396 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeFromStringEnum' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,407 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeValueOf' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,419 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeFromString' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,430 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$StringConstructor' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,439 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$DateProvider' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,450 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.JAXBStringReaderProviders$RootElementProvider' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,462 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,467 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,473 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,478 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,488 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,493 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,499 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,506 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,514 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,519 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,527 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,534 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,539 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,543 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,549 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,555 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,560 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,565 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,569 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,573 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,578 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,583 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,589 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,596 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,605 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.core.impl.provider.entity.SourceProvider$SourceWriter' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,611 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,617 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,623 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,628 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,633 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,640 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,646 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,652 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,657 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$App' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,662 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$General' for service type 'javax.ws.rs.ext.MessageBodyReader'
                14:12:20,666 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,671 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,675 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,680 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,685 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,689 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,696 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,700 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,706 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$App' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,712 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$General' for service type 'javax.ws.rs.ext.MessageBodyWriter'
                14:12:20,718 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeFromStringEnum' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,725 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeValueOf' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,731 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$TypeFromString' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,738 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$StringConstructor' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,743 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.StringReaderProviders$DateProvider' for service type 'com.sun.jersey.spi.StringReaderProvider'
                14:12:20,748 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015893: Encountered invalid class name 'com.sun.jersey.server.impl.model.parameter.multivalued.JAXBStringReaderProviders$RootElementProvider' for service type 'com.sun.jersey.spi.StringReaderProvider'

                 

                Does the appliation fails to load because of the above...

                I have added the jersy core in pom.xml, and checked it holds all the Classes above there...

                <dependency>
                  <groupId>com.sun.jersey</groupId>
                  <artifactId>jersey-core</artifactId>
                  <version>1.8</version>
                  </dependency>

                1 2 Previous Next