Author: dkulp Date: Wed Aug 15 16:26:31 2012 New Revision: 1373515 URL: http://svn.apache.org/viewvc?rev=1373515&view=rev Log: Merged revisions 1373499 via git cherry-pick from https://svn.apache.org/repos/asf/camel/branches/camel-2.10.x
........ r1373499 | dkulp | 2012-08-15 12:09:06 -0400 (Wed, 15 Aug 2012) | 10 lines Merged revisions 1372461 via git cherry-pick from https://svn.apache.org/repos/asf/camel/trunk ........ r1372461 | dkulp | 2012-08-13 11:17:08 -0400 (Mon, 13 Aug 2012) | 2 lines Changing from forcing doc/lit to just not validating the parts. ........ ........ Modified: camel/branches/camel-2.9.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java Modified: camel/branches/camel-2.9.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java URL: http://svn.apache.org/viewvc/camel/branches/camel-2.9.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java?rev=1373515&r1=1373514&r2=1373515&view=diff ============================================================================== --- camel/branches/camel-2.9.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java (original) +++ camel/branches/camel-2.9.x/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java Wed Aug 15 16:26:31 2012 @@ -305,7 +305,7 @@ public class CxfEndpoint extends Default if (sfb.getProperties() == null) { sfb.setProperties(new HashMap<String, Object>()); } - sfb.getProperties().put("soap.force.doclit.bare", Boolean.TRUE); + sfb.getProperties().put("soap.no.validate.parts", Boolean.TRUE); } sfb.setBus(getBus()); @@ -467,7 +467,7 @@ public class CxfEndpoint extends Default if (factoryBean.getProperties() == null) { factoryBean.setProperties(new HashMap<String, Object>()); } - factoryBean.getProperties().put("soap.force.doclit.bare", Boolean.TRUE); + factoryBean.getProperties().put("soap.no.validate.parts", Boolean.TRUE); } factoryBean.setBus(getBus());