Any chance you can package up an example that shows this not working? I've been playing around with the wsdl_first sample and I cannot get it to not validate the incoming message.
(I also assume you are using CXF 2.1.2) Dan On Monday 22 September 2008 3:57:53 pm kasturi1010 wrote: > It did not work :(. I have a spring bean configuration file that configures > the SEI implementation and exposes the java interface via <jaxws:endpoint> > What is going wrong? Passing the string "hello" when an integer was > expected still ran fine, which should be the case. > > <?xml version="1.0" encoding="UTF-8"?> > <beans> [Removing namespace declarations to avoid clutter] > > <import resource="classpath:META-INF/cxf/cxf.xml" /> > <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> > <import resource="classpath:META-INF/cxf/cxf-servlet.xml" /> > <import resource="applicationContext-dao.xml"/> > > <bean id="insuranceQuoteService" > class="com.revelex.insurance.service.InsuranceQuoteServiceImpl"> > <property name="productDAO"> > <ref bean="insuranceProductDAO"/> > </property> > </bean> > > <jaxws:endpoint id="insQuoteService" > > implementorClass="com.revelex.insurance.service.InsuranceQuoteServiceImpl" > implementor="#insuranceQuoteService" > address="/insurance/InsuranceQuoteService" > > <jaxws:properties> > <entry key="schema-validation-enabled" value="true" /> > </jaxws:properties> > </jaxws:endpoint> > > </beans> -- Daniel Kulp [EMAIL PROTECTED] http://www.dankulp.com/blog
