I'm new on developing IOS using web service. Can anyone help me on how to create a request with array parameter in SOAP Web Service. In PHP I can create a request by doing this:
$params = array(
"authuserid" => "454",
"authpassword" => "");
$result = $client->call("EC_LOGON",$params);
please help me I'm having a hard time to find a good example how to apply that code in objective c programming.
