Many CallFire API calls are blocking calls, i.e., they hold on to the calling thread until the operation is complete. Examples of these are the RecordService and the getAgentConnection operation in our Predictive Service. Many times, it is possible that the SOAP client may timeout before the operation is complete.
// Set timeouts, nusoap default is 30 $soapclient->timeout = 500; $soapclient->response_timeout = 500;
