Description
If a operation has schema like:
<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>
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.
Attachments
Issue Links
- is depended upon by
-
CXF-1243 Resolve JBoss common jax-ws testsuite issues
- Closed