本文整理匯總了PHP中Zend_Soap_Server::getLastResponse方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Soap_Server::getLastResponse方法的具體用法?PHP Zend_Soap_Server::getLastResponse怎麽用?PHP Zend_Soap_Server::getLastResponse使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Soap_Server
的用法示例。
在下文中一共展示了Zend_Soap_Server::getLastResponse方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: handleSOAP
/**
* function SOAP Handle. points to Np_Soap_Handler
* the class for the used for the soap method called .
*
* @return bool $result The Result of the SOAP Handle Function
*
*/
private function handleSOAP()
{
$soap = new Zend_Soap_Server(Application_Model_General::getWsdl(), array('soap_version' => SOAP_1_1));
$soap->setClass('Np_Soap_Handler');
$soap->handle();
$response = $soap->getLastResponse();
return $response;
// - change to result from handle
}
示例2: testGetLastResponse
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 Zend_Soap_Server();
$server->setOptions(array('location' => 'test://', 'uri' => 'http://framework.zend.com'));
$server->setReturnResponse(true);
$server->setClass('Zend_Soap_Server_TestClass');
$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->getLastResponse());
}
示例3: testGetLastResponse
public function testGetLastResponse()
{
$server = new Zend_Soap_Server();
$server->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
$server->setReturnResponse(true);
$server->setClass('Zend_Soap_Server_TestClass');
$request =
'<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL
. '<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>' . PHP_EOL;
$expectedResponse =
'<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL
. '<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>' . PHP_EOL;
$server->handle($request);
$this->assertEquals($expectedResponse, $server->getLastResponse());
}