我需要在Soap响应中添加一个名称空间。我正在使用php和SoapServer。我的回答是这样的:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns1="urn:query:request:v2.0">
我需要它像这样开始:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns1="urn:query:request:v2.0" xmlns:ns2="urn:query:type:v2.0">
我在PHP中的代码是这样的,我不知道如何继续:
class Service
{
// FUNCTIONS
}
$options= array('uri'=>'urn:query:request:v2.0',
'cache_wsdl' => WSDL_CACHE_NONE);
$server=new SoapServer("Service.wsdl",$options);
$server->setClass('Service');
$server->addFunction(SOAP_FUNCTIONS_ALL);
$server->handle();
由于
答案 0 :(得分:1)
将命名空间动态添加到soap响应正文中。只要soap主体中没有所需命名空间的元素,它就不会出现。你必须在响应中声明它。这是一个简单的例子。
肥皂请求处理类
在这个类中,通常定义soap服务的功能。这里发生了魔术。您可以使用所需的命名空间初始化SoapVar对象。
class Response
{
function getSomething()
{
$oResponse = new StdClass();
$oResponse->bla = 'blubb';
$oResponse->yadda = 'fubar';
$oEncoded = new SoapVar(
$oResponse,
SOAP_ENC_OBJECT,
null,
null,
'response',
'urn:query:type:v2.0'
);
return $oEncoded;
}
}
使用PHP自己的SoapVar类,您可以将命名空间添加到节点。第五个参数是节点的名称,而第六个参数是节点所属的命名空间。
肥皂服务器
$oServer = new SoapServer(
'/path/to/your.wsdl',
[
'encoding' => 'UTF-8',
'send_errors' => true,
'soap_version' => SOAP_1_2,
]
);
$oResponse = new Response();
$oServer->setObject($oResponse);
$oServer->handle();
如果调用了服务函数getSomething
,则响应将类似于以下xml。
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="urn:query:type:v2.0">
<env:Body>
<ns1:Response>
<ns1:bla>blubb</ns1:yadda>
<ns1:blubb>fubar</ns1:blubb>
</ns1:Response>
</env:Body>
</env:Envelope>
正如您所看到的,我们提供给SoapVar对象的命名空间出现在soap响应的信封节点中。