Author: dkulp
Date: Tue Dec 18 20:57:46 2012
New Revision: 1423642

URL: http://svn.apache.org/viewvc?rev=1423642&view=rev
Log:
With CXF 2.7.x, the URIMappingInterceptor is no longer on the "default" chain.

Modified:
    
camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/WSDLSoapServiceFactoryBean.java

Modified: 
camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/WSDLSoapServiceFactoryBean.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/WSDLSoapServiceFactoryBean.java?rev=1423642&r1=1423641&r2=1423642&view=diff
==============================================================================
--- 
camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/WSDLSoapServiceFactoryBean.java
 (original)
+++ 
camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/WSDLSoapServiceFactoryBean.java
 Tue Dec 18 20:57:46 2012
@@ -30,7 +30,6 @@ import org.apache.cxf.interceptor.Attach
 import org.apache.cxf.interceptor.AttachmentOutInterceptor;
 import org.apache.cxf.interceptor.StaxInInterceptor;
 import org.apache.cxf.interceptor.StaxOutInterceptor;
-import org.apache.cxf.interceptor.URIMappingInterceptor;
 import org.apache.cxf.service.Service;
 import org.apache.cxf.service.factory.ReflectionServiceFactoryBean;
 import org.apache.cxf.service.model.EndpointInfo;
@@ -83,7 +82,6 @@ public class WSDLSoapServiceFactoryBean 
         getService().getInInterceptors().add(new AttachmentInInterceptor());
         getService().getInInterceptors().add(new SoapHeaderInterceptor());
         getService().getInInterceptors().add(new CheckFaultInterceptor());
-        getService().getInInterceptors().add(new URIMappingInterceptor());
 
         getService().getInInterceptors().add(new StaxInInterceptor());
         getService().getInInterceptors().add(new SoapActionInInterceptor());


Reply via email to