Wrong wsdl generated from impl class annotated with @SOAPBinding(parameterStyle = ParameterStyle.BARE) ------------------------------------------------------------------------------------------------------
Key: CXF-4147 URL: https://issues.apache.org/jira/browse/CXF-4147 Project: CXF Issue Type: Bug Components: Tooling Reporter: jimma Assignee: jimma Fix For: 2.4.7, 2.5.3, 2.6 The wsdl generated from the following class is wrapped. @SOAPBinding(parameterStyle = ParameterStyle.BARE) @WebService public class HelloBare { @WebMethod public int add(int a, int b) { return a + b; } } We just get one add message with one xsd:int part , the input message with two parts is expected. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira