I\'m working on a project where I am verifying information from a user with a SOAP web service. I currently am taking care of errors assuming that I\'m receiving responses from
To deal with timeouts in the service
$client = new SoapClient($wsdl, array("connection_timeout"=>10)); // SET SOCKET TIMEOUT if(defined('RESPONSE_TIMEOUT') && RESPONSE_TIMEOUT != '') { ini_set('default_socket_timeout', RESPONSE_TIMEOUT); }