Powered By Blogger

Tuesday, June 16, 2015

SOAP using API fetch data from another server

$soap_tps_service = new SoapClient(URL);

$CreateService3 = $soap_tps_service->CreateService3(
array(
'userID' => $userID,
'password' => $password,
'customerRef' => $customerRef,
'serviceType' => 'TitlePoint.Geo.Tax',
'parameters' => 'Tax.APN='.$apn.'; General.AutoSearchTaxes=True; Tax.CurrentYearTaxesOnly=True; General.AutoSearchProperty=True; enableMonitoring=True',
'state' => 'CA',
'county' => 'Los Angeles'
)
);


returen value Use like below,

 echo $CreateService3->CreateService3Result->ReturnStatus

No comments:

Post a Comment