我有多个值,我想从android发送到DotNet Webservice。
所有值都存储在数组中。
Dotnet方法代码:
[WebMethod]
[ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Json)]
public void setApprovedEmp(string[] arrCheckedEmpIds)
{
// Use array here.
}
Android代码:
String[] arrIds = { "1009", "1001", "1012" }; // Array data is dynamic, not fix size
parameters.add(new BasicNameValuePair("arrCheckedEmpIds", arrIds));