The method I am using is expecting an array of string - I only want to send one value (first_name) associated with the parameter "attributes" - It works in SOAPUI
SoapObject request2 = new SoapObject(NAMESPACE, METHOD_NAMEdoselect);
request2.addProperty("sid", usersid);
request2.addProperty("objectType","cnt");
request2.addProperty("whereClause","first_name = 'Olivia'");
request2.addProperty("maxRows",-1);
request2.addProperty("attributes","first_name");
From the requestdump it shows it's sending a string rather than an array. How do I make it an Arrayofstring? I can't seem to find any info on this.
If you need any more info just let me know!