gpt4 book ai didi

php - SoapServer - 需要在 Soap 响应中添加命名空间

转载 作者:行者123 更新时间:2023-12-04 16:54:35 24 4
gpt4 key购买 nike

我需要在 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();

谢谢

最佳答案

命名空间是动态添加到soap 响应主体的。只要soap body中没有需要命名空间的元素,它就不会出现。您必须在响应中声明它。这是一个简单的例子。

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 响应的信封节点中。

关于php - SoapServer - 需要在 Soap 响应中添加命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45029810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com