Wrong "transport" attribute in soap12:binding ---------------------------------------------
Key: CXF-2531 URL: https://issues.apache.org/jira/browse/CXF-2531 Project: CXF Issue Type: Bug Components: Soap Binding, Tooling Affects Versions: 2.2.4 Reporter: Alessio Soldano Assignee: Alessio Soldano When deploying an endpoint having @BindingType(SOAP12HTTP_BINDING), in the generated wsdl we get a wsdl like this: <wsdl:binding name="SOAPEndpointServiceSoapBinding" type="tns:SOAPEndpoint"> <soap12:binding style="rpc" transport="http://www.w3.org/2003/05/soap/bindings/HTTP/"/> <wsdl:operation name="namespace"> <soap12:operation soapAction="" style="rpc"/> <wsdl:input name="namespace"> <soap12:body namespace="http://org.jboss.ws/jaxws/binding" use="literal"/> </wsdl:input> <wsdl:output name="namespaceResponse"> <soap12:body namespace="http://org.jboss.ws/jaxws/binding" use="literal"/> </wsdl:output> </wsdl:operation> </wsdl:binding> The problem is that transport="http://www.w3.org/2003/05/soap/bindings/HTTP/" while it should be trasport="http://schemas.xmlsoap.org/soap/http" as specified in http://www.w3.org/Submission/2006/SUBM-wsdl11soap12-20060405/#binding-element http://www.ws-i.org/Profiles/BasicProfile-2_0(WGD).html#HTTP_Transport -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.