1

SOAP クライアントに送信したいデータの配列があります。これはすべて機能しますが、__getLastRequest() で明らかになったように、1 つのデータが送信されません。

これが私のコードです

<?php

  $test_array = array(
    "request"   =>  array(
      "dateTime"          =>  "2011-12-05T11:37:06.0000000+00:00",
      "brandId"           =>  2,
      "extSysId"          =>  11,
      "extSysPassword"    =>  "xxxxx",
      "customer"          =>  array(
        "title" => "Mr",
        "firstName" =>  "Dec",
        "lastName" => "Test-Two",
        "address" => array(
          "type" => "Residential",
          "pafValidated" => TRUE,
          "houseNumber" => "xx",
          "houseName" => "",
          "line1" => "xx xx",
          "line2" => "",
          "line3" => "xx",
          "line4" => "",
          "line5" => "",
          "postcode" => "xxx xxx"
        ),
        "phones" => array(
          0 => array(
            "type" => "Home",
            "_" => "xxx xxxxxx"
          ),
          1 => array(
            "type" => "Work",
            "preferred" => TRUE,
            "_" => ""
          ),
          2 => array(
            "type" => "Mobile",
            "preferred" => TRUE,
            "_" => ""
          )
        ),
        "email" => "xxxx.xxxx@gmail.com"
      ),
      "nextPurchase"  => array(
        "date" => "2014-05-01"
      ),
      "dataProtection" => array(
        "group" => FALSE,
        "thirdParty" => FALSE
      ),
      "futureContactChannels" => array(
        0 => array(
          "type" => "Whitemail",
          "option" => FALSE
        ),
        1 => array(
          "type" => "Email",
          "option" => FALSE
        ),
        2 => array(
          "type" => "Phone",
          "option" => FALSE
        ),
        3 => array(
          "type" => "SMS",
          "option" => FALSE
        )
      ),
      "vehicleRequests" => array(
        0 => array(
          "derivativeCode" => "xxxxx",
          "type" => "T"
        )
      ),
      "Retailer" => array(
        0 => array (
          "dealerCode" => "00082"
        )
      ),
      "company" => array(
        "companyName" => "",
        "jobTitle" => ""
      ),
      "campaign" => array(
        "code" => "xxxxxxxxx",
        "source" => 69
      ),
      "notes" => "blah balh: ."
    )
  );

$client = new SoapClient("/xxx/xxxx/xxxxxx/xxxxx.wsdl", array(
  "login" => "xxx", 
  "password" => "xxx",
  "location" => "http://xxx.xxx.xxx.xxx/xxxxxx/Some.asmx",
  "uri" => "urn:xmethods-delayed-quotes",
  'trace' => 1,
  'exceptions' => 1,
  'soap_version' => 'SOAP_1_1',
  'encoding' => 'UTF-8',
  'features' => 'SOAP_USE_XSI_ARRAY_TYPE'
));


$client->CallComeFunction($test_array);

echo "REQUEST:\n" . $client->__getLastRequest() . "\n";

echo "*************************************************\n";

echo "Response:\n" . $client->__getLastResponse() . "\n";

Retailed[0]['dealerCode'] は、送信された XML から省略される唯一の情報です。

何か案は?

どうもありがとう。

4

1 に答える 1

2

mac が言うように、コードをフォーマットするのはいいことですが、私が気づいたことの 1 つは、'Retailer' フィールドだけが大文字になっていることです。WSDL がクライアントから送信されるものに影響を与えるかどうかはわかりませんが、影響する可能性があります。

WSDL を再確認し、フィールドを「小売業者」にする必要があるかどうかを確認します。ところで、WSDL を共有できる可能性はありますか?

編集 WSDL を確認した後、「小売業者」が進むべき道です。

<s:element minOccurs="0" maxOccurs="1" name="retailer" type="tns:Retailer"/>

ペイロードも異なる形式にする必要があります。

"retailer" => array(
    "dealerCode" => "00082"
)

WSDLごと

<s:complexType name="Retailer">      
    <s:attribute name="dealerCode" type="s:string"/>        
</s:complexType>
于 2011-12-11T21:45:25.037 に答える