You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Martin Caslavsky (JIRA)" <ji...@apache.org> on 2007/09/20 15:35:31 UTC

[jira] Created: (AXIS2-3217) WSDL2Java with unwrapping (-uw) generates parameters in incorrect order

WSDL2Java with unwrapping (-uw) generates parameters in incorrect order
-----------------------------------------------------------------------

                 Key: AXIS2-3217
                 URL: https://issues.apache.org/jira/browse/AXIS2-3217
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: codegen
    Affects Versions: 1.4
            Reporter: Martin Caslavsky
         Attachments: test.wsdl

wsdl2java.bat -ss -s -g -u -or -d adb -o src -uw -uri test.wsdl
generates Test.java:
public java.lang.String NewOperation(int newOperationRequest222, java.lang.String newOperationRequest23)
This order is different from order in WSDL (String, int) and also from order in which Axis1 used to generate code

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Updated: (AXIS2-3217) WSDL2Java with unwrapping (-uw) generates parameters in incorrect order

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

Martin Caslavsky updated AXIS2-3217:
------------------------------------

    Attachment: test.wsdl

> WSDL2Java with unwrapping (-uw) generates parameters in incorrect order
> -----------------------------------------------------------------------
>
>                 Key: AXIS2-3217
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3217
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: codegen
>    Affects Versions: 1.4
>            Reporter: Martin Caslavsky
>         Attachments: test.wsdl
>
>
> wsdl2java.bat -ss -s -g -u -or -d adb -o src -uw -uri test.wsdl
> generates Test.java:
> public java.lang.String NewOperation(int newOperationRequest222, java.lang.String newOperationRequest23)
> This order is different from order in WSDL (String, int) and also from order in which Axis1 used to generate code

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Resolved: (AXIS2-3217) WSDL2Java with unwrapping (-uw) generates parameters in incorrect order

Posted by "Amila Chinthaka Suriarachchi (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3217?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Amila Chinthaka Suriarachchi resolved AXIS2-3217.
-------------------------------------------------

    Resolution: Invalid

please use parmeterOrder to specifiy the order
eg. 
<wsdl:portType name="test">
        <wsdl:operation name="NewOperation" parameterOrder="NewOperationRequest NewOperationRequest2">
            <wsdl:input message="tns:NewOperationRequest"/>
            <wsdl:output message="tns:NewOperationResponse"/>
        </wsdl:operation>
    </wsdl:portType>

> WSDL2Java with unwrapping (-uw) generates parameters in incorrect order
> -----------------------------------------------------------------------
>
>                 Key: AXIS2-3217
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3217
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: codegen
>    Affects Versions: 1.4
>            Reporter: Martin Caslavsky
>         Attachments: test.wsdl
>
>
> wsdl2java.bat -ss -s -g -u -or -d adb -o src -uw -uri test.wsdl
> generates Test.java:
> public java.lang.String NewOperation(int newOperationRequest222, java.lang.String newOperationRequest23)
> This order is different from order in WSDL (String, int) and also from order in which Axis1 used to generate code

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org