From: lanabe.lan...@gmail.com
Date: Thu, 16 Jun 2016 10:09:07 +0000
Subject: Can't use JAX-WS + SOAP 1.2 ?
To: java-user@axis.apache.org
Hi, I'm new to here.
I think Axis2 supports JAX-WS + SOAP 1.2, but apparently the generated wsdl
accessing 'http://some-domain/path/to/<servicename>?wsdl' is always treated as
SOAP 1.1 though the service class added
@BindingType(SOAPBinding.SOAP12HTTP_BINDING).
the related code is here:
https://github.com/apache/axis2-java/blob/v1.7.3/modules/metadata/src/org/apache/axis2/jaxws/description/builder/JAXWSRIWSDLGenerator.java#L389
And I've created a simple reproducer. Am I missing something?
https://github.com/emag/axis2-jaxws-soap12-demo
MG>in axis2.xml what are values for parameter disableSOAP12 and parameter
disableSOAP11
<parameter name="disableSOAP12" locked="true">?</parameter>
<parameter name="disableSOAP11" locked="true">?</parameter>
MG>?