wrapper InOuts not being generated per spec for single response part --------------------------------------------------------------------
Key: CXF-2582 URL: https://issues.apache.org/jira/browse/CXF-2582 Project: CXF Issue Type: Bug Components: Tooling Reporter: Daniel Kulp Assignee: Daniel Kulp Fix For: 2.1.9, 2.2.6 If a operation has schema like: {code:xml} <element name="testInOut"> <complexType> <sequence> <element minOccurs='0' name='val' type='xsd:int'/> <element name='num' type='xsd:int'/> </sequence> </complexType> </element> <element name="testInOutResponse"> <complexType> <sequence> <element minOccurs='0' name='val' type='xsd:int'/> </sequence> </complexType> </element> {code} we are generating: Integer testInOut(java.lang.Integer, int) instead of: void testInOut(Holder<Integer>, int) which is what the spec calls for and what the RI generates. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.