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
Thanks Mindaugas. A slight edit to your answer worked for me:
SoapObject soapObj = new SoapObject(namespace, "ImageId"); for (Integer i : image_id){ soapObj.addProperty("int", i); } request_login.addProperty("ImageId", soapObj);