Re: getting error while deploying application with apache cxf2.5.2

2012-03-29 Thread Christian Müller
I'm not sure if this is related to your problem, but you use the wrong namespaces in your xml. http://www.springframework.org/schema/util/spring-util-2.0.xsd should be http://www.springframework.org/schema/util/spring-util.xsd http://www.springframework.org/schema/beans/spring-beans-2.0.xsd should

Re: getting error while deploying application with apache cxf2.5.2

2012-03-29 Thread bhushand
Hello Willem, Yes, I disabled the WAS jaxws engine by setting JVM property under generic JVM arguments -Dcom.ibm.websphere.webservices.DisableIBMJAXWSEngine=true That also did note resolved the problem. Following is my extract from my web.xml org.springframework.web.context.Con

Re: getting error while deploying application with apache cxf2.5.2

2012-03-29 Thread Willem Jiang
Hi, Did you try to disable the jaxws engine ? To disable for the whole JVM, set the JVM property com.ibm.websphere.webservices.DisableIBMJAXWSEngine=true or to disable the engine just for a specific module by adding DisableIBMJAXWSEngine: true to WAR/META-INF/MANIFEST.MF. Willem On 3/29/12

Re: getting error while deploying application with apache cxf2.5.2

2012-03-29 Thread Stefan Burkard
Hmmm, the following snippet of the stacktrace sounds like one class was compiled against another class version than the available one. So I guess SpringBus was compiled against another version of AssertionBuilderFactory than the one that is loaded in your environment. Has the appserver an internal

Re: getting error while deploying application with apache cxf2.5.2

2012-03-28 Thread bhushand
Hello Stefan, I already have removed the unnecessary jar file and only below mentioned jars as mentioned in below link http://cxf.apache.org/docs/application-server-specific-configuration-guide.html for Websphere server. > aopalliance-1.0.jar > commons-logging-1.1.1.jar > cxf-2.5.2.jar > FastIn

Re: getting error while deploying application with apache cxf2.5.2

2012-03-28 Thread Stefan Burkard
Here is a post with the same problem (I think). Beside to set PARENT LAST, the author had also to delete several jars... Hope this helps Stefan On Wed, Mar 28, 2012 at 19:19, bhushand wrote: > Hello > We are facing following problem while deploying our application, please help > us. > > We are