DIv3 PHP
From CDYNE Wiki for Web Services
Using as a Service Reference(.NET Framework 3.5+)
http://di3.cdyne.com/DeathIndexService.svc?wsdl
Deceased By SSN
$client = new soapclient('http://di3.cdyne.com/DeathIndexService.svc?wsdl'); $param = array( 'ssn'=>'234485652', 'LicenseKey'=>'(Your License Key)' ); $result = $client->DeceasedBySSN($param); print_r($result);
Search Deceased Info
$client = new soapclient('http://di3.cdyne.com/DeathIndexService.svc?wsdl'); $param = array( 'LastName'=>'smith', 'FirstName'=>'john', 'StateAbbreav'=>'VA', 'GreaterThanYear'=>'1983', 'LicenseKey'=>'(Your License Key)' ); $result = $client->SearchDeceasedInfo($param); print_r($result);
