I was able to get it resolved with following property setting:
JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
Map<String, Object> props = factory.getProperties();
if(null == props)
{
props = new HashMap<String, Object>();
}
props.put("soap.no.validate.parts", true);
factory.setProperties(props);
Thanks,
Kalpa
--
View this message in context:
http://cxf.547215.n5.nabble.com/CXF-2-7-8-Not-recognize-substitutionGroup-Elements-tp5744532p5744545.html
Sent from the cxf-user mailing list archive at Nabble.com.