Exemplo n.º 1
0
 /**
  * Actual "do request" method.
  *
  * @param  Common $client
  * @param  string $request
  * @param  string $location
  * @param  string $action
  * @param  int    $version
  * @param  int    $oneWay
  * @return mixed
  */
 public function _doRequest(Common $client, $request, $location, $action, $version, $oneWay = null)
 {
     // Perform request as is
     ob_start();
     $this->server->handle($request);
     $response = ob_get_clean();
     if ($response === null || $response === '') {
         $serverResponse = $this->server->getResponse();
         if ($serverResponse !== null) {
             $response = $serverResponse;
         }
     }
     return $response;
 }
Exemplo n.º 2
0
 public function testGetLastResponse()
 {
     if (headers_sent()) {
         $this->markTestSkipped('Cannot run testGetLastResponse() when headers have already been sent; enable output buffering to run this test');
         return;
     }
     $server = new Server();
     $server->setOptions(array('location' => 'test://', 'uri' => 'http://framework.zend.com'));
     $server->setReturnResponse(true);
     $server->setClass('\\ZendTest\\Soap\\TestAsset\\ServerTestClass');
     $request = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ' . 'xmlns:ns1="http://framework.zend.com" ' . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" ' . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ' . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" ' . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">' . '<SOAP-ENV:Body>' . '<ns1:testFunc2>' . '<param0 xsi:type="xsd:string">World</param0>' . '</ns1:testFunc2>' . '</SOAP-ENV:Body>' . '</SOAP-ENV:Envelope>' . "\n";
     $expectedResponse = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ' . 'xmlns:ns1="http://framework.zend.com" ' . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" ' . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ' . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" ' . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">' . '<SOAP-ENV:Body>' . '<ns1:testFunc2Response>' . '<return xsi:type="xsd:string">Hello World!</return>' . '</ns1:testFunc2Response>' . '</SOAP-ENV:Body>' . '</SOAP-ENV:Envelope>' . "\n";
     $server->handle($request);
     $this->assertEquals($expectedResponse, $server->getResponse());
 }