* @package Mammut\Protocol * @since 1.0.0.1 */ class Client extends \Zend\Soap\Client { const _VERSION_ = '0.0.0.1'; private $soapClient; public function __construct($uri, $lib = 'Zend') { $this->soapClient = new \Zend\Soap\Client\Common(); $this->soapClient->setUri($uri); } /** * temporary solution to provide the internal client * * @return \Zend\Soap\Client\Common */ public function getClient() { return $this->soapClient; } /** * generate a client stub from a wsdl * * @param string $adress * the wsdl address * @return string */ public static function createClientStubPHP($adress) { $st = '