Hi. I'm creating a WS client programmatically:
jaxWsProxyFactoryBean = new JaxWsProxyFactoryBean();
jaxWsProxyFactoryBean.setServiceClass(MyInterface.class);
jaxWsProxyFactoryBean.setAddress(url);
MyInterface obj = (MyInterface)jaxWsProxyFactoryBean.create();Is there some way to specify the soap version programmatically? (the server url "change" and some server understands soap 1.1 and others only 1.2) Thanks in advance! Best regards
