Example #1
0
    public function testNormalSoapMessage()
    {
        $expected = '<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:hello-world:1.0"><SOAP-ENV:Body><ns1:sayHello/></SOAP-ENV:Body></SOAP-ENV:Envelope>
';
        $this->client->setXmlDSigAdapter(null);
        $this->client->__call('sayHello', array());
        $this->assertEquals($expected, $this->client->__getLastRequest());
    }