Esempio n. 1
0
<?php

$d = null;
function test($x)
{
    global $d;
    $d = $x;
}
class LocalSoapClient extends SoapClient
{
    function __construct($wsdl, $options)
    {
        parent::__construct($wsdl, $options);
        $this->server = new SoapServer($wsdl, $options);
        $this->server->addFunction('test');
    }
    function __doRequest($request, $location, $action, $version, $one_way = 0)
    {
        ob_start();
        $this->server->handle($request);
        $response = ob_get_contents();
        ob_end_clean();
        return $response;
    }
}
$x = new LocalSoapClient(dirname(__FILE__) . "/bug32776.wsdl", array("trace" => true, "exceptions" => false));
var_dump($x->test("Hello"));
var_dump($d);
var_dump($x->__getLastRequest());
var_dump($x->__getLastResponse());
echo "ok\n";
Esempio n. 2
0
<?php

function EchoString($s)
{
    return $s;
}
class LocalSoapClient extends SoapClient
{
    function __construct($wsdl, $options)
    {
        parent::__construct($wsdl, $options);
        $this->server = new SoapServer($wsdl, $options);
        $this->server->addFunction('EchoString');
    }
    function __doRequest($request, $location, $action, $version, $one_way = 0)
    {
        ob_start();
        $this->server->handle($request);
        $response = ob_get_contents();
        ob_end_clean();
        return $response;
    }
}
$client = new LocalSoapClient(dirname(__FILE__) . "/bug29839.wsdl", array("trace" => 1));
$client->EchoString(array("value" => "hello", "lang" => "en"));
echo $client->__getLastRequest();
echo $client->__getLastResponse();
echo "ok\n";