You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Daniel Kulp (JIRA)" <ji...@apache.org> on 2009/12/14 18:53:18 UTC

[jira] Created: (CXF-2582) wrapper InOuts not being generated per spec for single response part

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.


[jira] Resolved: (CXF-2582) wrapper InOuts not being generated per spec for single response part

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2582?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-2582.
------------------------------

    Resolution: Fixed

> 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.