dongsha9208 2018-08-28 12:36
浏览 91

如何从PHP中正确生成具有相同名称的多个项的SOAP WSDL请求?

I need to generate following XML Soap request in PHP:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/> 
    <soapenv:Body> 
        <ns1:SomeRequest enddate="01-01-2018 00:00:00" authCode="exampleexample"> 
            <ns1:status>STATUS1</ns1:status> 
            <ns1:status>STATUS2</ns1:status> 
        </ns1:SomeRequest> 
    </soapenv:Body> 
</soapenv:Envelope>

I'm trying like that:

$this->client = new SoapClient($this->wsdlUrl, [
    'trace' => true,
    'exception' => true,
    'cache_wsdl' => WSDL_CACHE_NONE,
]);

$parameters = [
    'authCode' => 'exampleexample',
    'enddate' => '01-01-2018 00:00:00',
    'status' => ['STATUS1', 'STATUS2']
];

$response = $this->client->SomeSimpleMethod($parameters);

And receive Array to string conversion error. When I'm trying pass status as string, like that:

$parameters = [
    'authCode' => 'exampleexample',
    'enddate' => '01-01-2018 00:00:00',
    'status' => 'STATUS1'
];

Then everything works fine.

  • 写回答

1条回答 默认 最新

  • donglun1020 2018-08-29 13:31
    关注

    The best way is to use a WSDL to PHP generator as you won't wonder how to correctly construct the request. As it is not always straightforward to do so, using the generated classes to construct the request and to send it, you will easily send the request and handle the response using the OOP approach.

    Try the PackageGenerator project which is best suited to generate a PHP SDK from any SOAP WSDL.

    评论

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)