8

那里有很多关于 PHP 和 SOAP 的问题。但我没有找到关于我的情况的答案。

所以。我为此使用 PHP SoapClient 和 WSDL。对象发送这个:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.site.com"><SOAP-ENV:Body>

但我需要这个:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>

问题。如何使用标准 PHP 类 SoapClient 做到这一点?

谢谢你。

4

2 回答 2

5

我在 php.net 中搜索答案

<?php
class MSSoapClient extends SoapClient {

    function __doRequest($request, $location, $action, $version) {
        $namespace = "http://tempuri.com";

        $request = preg_replace('/<ns1:(\w+)/', '<$1 xmlns="'.$namespace.'"', $request, 1);
        $request = preg_replace('/<ns1:(\w+)/', '<$1', $request);
        $request = str_replace(array('/ns1:', 'xmlns:ns1="'.$namespace.'"'), array('/', ''), $request);

        // parent call
        return parent::__doRequest($request, $location, $action, $version);
    }
}

$client = new MSSoapClient(...);
?>

此代码更改请求中的信封。并且需要 ASP SOAP 服务器。

于 2010-03-20T13:16:54.103 回答
0

用于SoapVar::typeNamespace设置您的xmlns:xsi

像这样的东西:

new SoapVar($data, SOAP_ENC_OBJECT, "Type", "http://www.w3.org/2001/XMLSchema");

来源:https ://www.php.net/manual/fr/soapvar.construct

于 2021-11-26T09:46:26.847 回答