özdeş etiketleri geliştirmek php5 SOAP istemci

1 Cevap php

Ben şöyle bir SOAP XML isteği oluşturmak çalışıyorum:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dto="dto" xmlns:com="">
   <soapenv:Header>
      <dto:AuthenticationDTO>
     <dto:LOGIN_ID>login</dto:LOGIN_ID>
     <dto:LOGIN_PASSWORD>login</dto:LOGIN_PASSWORD>
  </dto:AuthenticationDTO>
   </soapenv:Header>
   <soapenv:Body>
  <com:createAccount>
     <com:AccountFields>
        <!--Zero or more repetitions:-->
        <dto:FieldDTO>
           <!--Optional:-->
           <dto:children/>
           <!--Optional:-->
           <dto:fieldType>GENERAL</dto:fieldType>
           <!--Optional:-->
           <dto:index>0</dto:index>
           <!--Optional:-->
           <dto:label>BusinessName</dto:label>
           <!--Optional:-->
           <dto:name>BizInfo-BusinessName</dto:name>
           <!--Optional:-->
           <dto:value>the business name</dto:value>
        </dto:FieldDTO>
        <!--Zero or more repetitions:-->
        <dto:FieldDTO>
           <!--Optional:-->
           <dto:children/>
           <!--Optional:-->
           <dto:fieldType>GENERAL</dto:fieldType>
           <!--Optional:-->
           <dto:index>0</dto:index>
           <!--Optional:-->
           <dto:label>BusinessCountry</dto:label>
           <!--Optional:-->
           <dto:name>BizInfo-Country</dto:name>
           <!--Optional:-->
           <dto:value>US</dto:value>
        </dto:FieldDTO>
     </com:AccountFields>
     <com:ApplicationNumber></com:ApplicationNumber>
     <com:CreditTerms></com:CreditTerms>
     <com:GenerateAccountIdIndicator>true</com:GenerateAccountIdIndicator>
  </com:createAccount>

Ben bu kodu kullanarak bir yanıt alıyorum:

    $matchCompany->FieldList->FieldDTO->fieldType = 'GENERAL';
    $matchCompany->FieldList->FieldDTO->label = 'Business Name';
    $matchCompany->FieldList->FieldDTO->name = 'BizInfo-BusinessName';
    $matchCompany->FieldList->FieldDTO->index = '0';
try
{  
    $result = $soapClient->getAccountInfo($matchCompany);     
    print "<pre>";
    print_r($result); 
    print "</pre>";
    echo "REQUEST:\n" . htmlentities($soapClient->__getLastRequest()) . "\n"; 

}
catch(SoapFault $fault)
{  
   echo $fault->faultcode . "-" . $fault->faultstring;  
   echo "REQUEST:\n" . htmlentities($soapClient->__getLastRequest()) . "\n"; 
} 

ama ben diziye böyle fielddto öğeyi çalışırsanız:

    //$matchCompany->FieldList->FieldDTO[]['fieldType'] = 'GENERAL';
//$matchCompany->FieldList->FieldDTO[]['label'] = 'Business Name';
//$matchCompany->FieldList->FieldDTO[]['name'] = 'BizInfo-BusinessName';
//$matchCompany->FieldList->FieldDTO[]['index'] = '0';

Bunun yerine tek bir FieldDTO etiketi dört öğeleri yerleştirerek o kendi FieldDTO etiketinde her öğeyi sarar.

Ne eksik? Çalışması gerekir gibi görünüyor, ama bu tam olarak doğru değil.

1 Cevap

Eğer bu dizinin $matchCompany->FieldList->FieldDTO[]['any_field'] indeks yürütme her bir artırılır unutmayın. Bir tanımlanmış ve elle artırılır indeksi kullanabilirsiniz (örneğin, $matchCompany->FieldList->FieldDTO[$i]['any_field'] = 'any_value') veya sadece bir kerede tüm değerlerini ayarlayabilirsiniz:

$matchCompany->FieldList->FieldDTO[] = array(
    'fieldType' => 'GENERAL',
    'label' => 'Business Name',
    'name' => 'BizInfo-BusinessName',
    'index' => '0'
);