/**
  * Get the HTTP Client for communication with the VERS SOAP service.
  * @return Zend_Http_Client
  */
 public function getClient()
 {
     if (is_null($this->_client)) {
         $this->setClient(new Zend_Soap_Client($this->_wsdl));
         $this->_client->setSoapVersion(SOAP_1_1);
     }
     return $this->_client;
 }