I'm new to this "SOAP" stuff...
Here is the WebService http://www.sdlmi.com/MIHPService/MIHP.Service1.svc?wsdl
I'm using PHP to send and get a response to validate a specific userid. Here is my current PHP code:
$userid = $_POST['tendigitid'];
$client = new SoapClient("http://www.sdlmi.com/MIHPService/MIHP.Service1.svc?wsdl");
$result = $client->isPersonEligible(array(....));
I'm quite stuck on HOW to send my $userid variable and get the response from it. For the response, I just need a simple message saying that the input is valid or not. Thanks.