Figured it out, see Update below.
I'm trying to work with a particular web service via PHP (tried both the native and Zend SOAP clients) and it only returns a failure status.
I suspect that it has something to do with the multiple beans in the retrieveMemberInfo method call (authBean, memberInfoBean).
Could someone take a look at the WSDL and point me in the right direction for this particular method call via the PHP client?
Here is what I have so far:
$service = new SoapClient('https://qa.everbridge.net/ws3/services/WebServices3?wsdl');
$result = $service->retrieveMemberInfo(array('loginId', 'orgName', 'password'), array('firstname', 'lastname'));
var_dump($result);
Update
The problem was not with the WSDL call as originally thought. It was the format for the parameters used in the retrieveMemberInfo method call. Here is the full solution that correctly returns the SOAP response:
$params->authBean->loginId = 'username';
$params->authBean->orgName = 'orgName';
$params->authBean->password = 'password';
$params->memberInfoBean->firstName = 'firstName';
$params->memberInfoBean->lastName = 'lastName';
$service = new SoapClient('https://qa.everbridge.net/ws3/services/WebServices3?wsdl');
$result = $service->retrieveMemberInfo($params);
var_dump($result);
Now I just have to figure out how to parse the returned stdObject.
Thanks for the assistance.