diff -r 000000000000 -r 4eba9c11703f web/Zend/Soap/Client/Local.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/Zend/Soap/Client/Local.php Mon Dec 13 18:29:26 2010 +0100 @@ -0,0 +1,93 @@ +_server = $server; + + // Use Server specified SOAP version as default + $this->setSoapVersion($server->getSoapVersion()); + + parent::__construct($wsdl, $options); + } + + /** + * Actual "do request" method. + * + * @internal + * @param Zend_Soap_Client_Common $client + * @param string $request + * @param string $location + * @param string $action + * @param int $version + * @param int $one_way + * @return mixed + */ + public function _doRequest(Zend_Soap_Client_Common $client, $request, $location, $action, $version, $one_way = null) + { + // Perform request as is + ob_start(); + $this->_server->handle($request); + $response = ob_get_contents(); + ob_end_clean(); + + return $response; + } +} + +} // end if (extension_loaded('soap')