Hello, I consume a webservice using an axis2 synchronous client with adb. The webservice provides in the response an array of a complex type in a certain order: <env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'> <env:Header></env:Header> <env:Body> <ns1:testResponse xmlns:ns1="test"> <testResponse> <testResult>Name1</testResult> <testResult>Name2</testResult> <testResult>Name3</testResult> <testResult>Name4</testResult> <testResult>Name5</testResult> </testResponse> </ns1:testResponse> </env:Body> </env:Envenlope>
The Axis2 client provides me all this data, but the array is not in the same order like the response. Can anybody point me to the direction, how to keep the order from the response. I don't want to sort all the data by myself again. Regards, Mark -- View this message in context: http://www.nabble.com/axis2-client-doesn%27t-keep-the-object-order-of-the-response-xml-tp23885645p23885645.html Sent from the Axis - User mailing list archive at Nabble.com.