Hello everybody,
I want to pass an array (eg : a String array) to concat method of a
web service as the following code :
var ar : Array = new Array();
ar.push("Hello");
ar.push("World");
WS.concat(ar);
// WS is correctly initialized and tested with other methods.
But in the captured message SOAP, there's no argument ... I think the
array is not serialized and nothing is passed to the concat method.
I have tried with ArrayCollection but the same result.
Does anyone know about this thing? Any idea?
Thank you in advance,
HD-Kieu.