Hi Rabindra,
Im using php to consume this web services
heres my code:
$name = $this->session->userdata['logged_in']['Name'];
$contact = $this->session->userdata['logged_in']['Contact_No'];
// check if contact and its account number
$params = array('filter'=>
array(array('Field'=>'Contact_No', 'Criteria'=>$contact),
array('Field'=>'Name', 'Criteria'=>'')),'setSize'=>0);
$resp = $client->ReadMultiple($params);
$customer = $resp->ReadMultiple_Result->memberDetails;
$array3 = json_decode(json_encode($customer->Account_No), true);
$trim = json_encode($array3);
$Account_No = trim($trim, '"');
// if account and contact update neccesary fields for contact
$_POST = json_decode(file_get_contents('php://input'), true);
$NavCheck = $client->Read(array(
'Account_No' => $Account_No , 'Contact_No' => $NRIC
));
$customer = $NavCheck->memberDetails;
$customer->Name = $Name;
$customer->Address = $Address;
$customer->Address_2 = $postal;
$customer->City = $City;
$customer->Phone_No = $Phone_No;
$customer->Mobile_Phone_No = $Mobile_Phone_No;
$customer->E_Mail = $Email;
$customer->Gender = $Gender;
$customer->Date_of_Birth = $Date_of_Birth;
$customer->Marital_Status = $Marital_Status;
$res = $client->Update($NavCheck);