dongtan7201 2018-05-14 18:14
浏览 149
已采纳

PHP SOAP返回具有属性的相同名称元素的数组

I am trying to return values the way they are sent into my soap server so they have the same XML structure.

Here is a sample request for multiple policies with various attributes.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="https://customer-soap.example.com/?WSDL">
   <soapenv:Header/>
   <soapenv:Body>
      <wsdl:SendPoliciesRequestInput>
         <sesid>someid</sesid>
         <!--Optional:-->
         <policy product="product1" company="ges1" polizzenNr="pol1" premium="1" expiry="01.01.2000" info="blabla1"/>
         <policy product="product2" company="ges2" polizzenNr="pol2" premium="2" expiry="02.01.2000" info="blabla2"/>
      </wsdl:SendPoliciesRequestInput>
   </soapenv:Body>
</soapenv:Envelope>

In my php code this translates to an object containing a sesid and an array of policy elements like this: (print_r($request))

stdClass Object
(
    [sesid] => someid
    [policy] => Array
        (
            [0] => stdClass Object
                (
                    [product] => product1
                    [company] => ges1
                    [Nr] => pol1
                    [premium] => 1
                    [expiry] => 01.01.2000
                    [info] => blabla1
                )

            [1] => stdClass Object
                (
                    [product] => product2
                    [company] => ges2
                    [Nr] => pol2
                    [premium] => 2
                    [expiry] => 02.01.2000
                    [info] => blabla2
                )

When trying to return this exact object back to the caller the following code

<php
class Example
{
  public function SendPolicies($request)
  {
    return $request;
  }
}

outputs like this:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="https://customer-soap.example.com/?WSDL">
       <soapenv:Header/>
       <soapenv:Body>
          <wsdl:SendPoliciesRequestOutput>
             <sesid>someid</sesid>
             <!--Optional:-->
             <policy />
          </wsdl:SendPoliciesRequestOutput>
       </soapenv:Body>
    </soapenv:Envelope>

I've tried several approaches including creating SoapVar but this would only restructure the objects instead of creating an output that is exactly the same as the input.

Every help is much appreciated.

  • 写回答

1条回答 默认 最新

  • dongzhi4239 2018-05-15 09:32
    关注

    I ended up using mounties solution: https://stackoverflow.com/a/24894102/8247069

    So not ideal. Another way to do it would be to write the XML yourself:

    $soap->param = new SoapVar("<param attrName='attributeName'>value</param>", XSD_ANYXML);
    

    I don't like either way, but when you've got a deadline, you go with what works.

    The problem seems to be that my code is on the server side, thus (as far as I was able to find out during my research) I am not able to switch into WSDL mode although my server is started using a WSDL.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?
  • ¥15 关于#vue.js#的问题:修改用户信息功能图片无法回显,数据库中只存了一张图片(相关搜索:字符串)
  • ¥15 texstudio的问题,