I\'m having a problem trying to send an array of ints to a .NET web service which expects an array in one of the arguments. That\'s at least what I understand from the API d
For me this works passing the Array elements one by one in a loop
public List intsEnvio; for(int i: intsEnvio){ request.addProperty("clases", i); }