Description
Hi,
when WSDL contain a message with several parts like this
<message name="ppm_createResponse">
<part name="returnValue" type="xsd:int" />
<part name="returnComment" type="xsd:string" />
<part name="accounid" type="xsd:string" />
<part name="identify" type="xsd:string" />
</message>
then the ADB code generated does not respect the ordering of the parts. It generate code that handles parameter in different order and so it leads to UnexpectedElement error.
I think the problem is in the file org.apache.axis2.schema.template.ADBBeanTemplate.xsl
See my WSDL input and generated class where the ordering is incorrect (Class osp_methods.Ppm_createResponse, order problem from line 570 to 632)