Hello,
I was trying to get an arraylist as a parameter in a webservice but when i get the instance of the proxy class on the client it's shown as an Object array. My arraylist is as simple as a group of strings, no object based arraylist is needed.
<WebMethod> Function MyMethod(data as ArrayList) as boolean
End Function
and on the client the signature is :
MyMethod (returnvalue() as Object)
That means, i have to make a explicit cast to get at least an Array object and not an arraylist as original.
Could you tell me how to pass the arraylist to the webmethod and get the same type of object as a returned data on the client?
I appreciate your support.
Thanks.
Larry.
Larry Suárez.