Thanks! I will definitly give it a try. 
Now I need to solve some problem to even generate soap1.2 wsdl file first :(



Well, I use following configuration (example)

<beans xmlns="http://www.springframework.org/schema/beans";
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    xmlns:jaxws="http://cxf.apache.org/jaxws";
    xmlns:soap="http://cxf.apache.org/bindings/soap";
    xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
                        http://cxf.apache.org/jaxws
http://cxf.apache.org/schemas/jaxws.xsd
                        http://cxf.apache.org/bindings/soap
http://cxf.apache.org/schemas/configuration/soap.xsd";>

    <import resource="classpath:META-INF/cxf/cxf.xml" />
    <import resource="classpath:META-INF/cxf/cxf-extension-http.xml" />
    <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
    <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

    <jaxws:client id="spring_id" serviceClass="some.service.class"
address="some_service_address">
        <jaxws:binding>
            <soap:soapBinding version="1.2"/>
        </jaxws:binding>
    </jaxws:client>
</beans>

DM


-- 
View this message in context: 
http://www.nabble.com/How-to-set-Soap-version-on-client-side-tp14692146p14694295.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to