0

一部に次のような SOAP リクエストを作成しようとしています。

<com:locale language="?" country="?">
                     <com:descriptions>

                        <com:description type="?">This is a description</com:description>
                     </com:descriptions>
                     <com:marketingDescription>This is a marketing des</com:marketingDescription>

以下を使用して、属性を問題なく追加できます。

function buildTask($db, $id=1) {
$task = array(
    'id' => $id++,
    'insertCustomProduct' => array(
                                    'manufacturerId' => "1234567",
                                    'manufacturerPartNo' => "ABC12345",

                                    'categoryId' => 10000000,
                                    'categoryType' => 'default',  
                                    'skus' => array(
                                                    'sku' => array(
                                                                    'type' => 'Internal',
                                                                    'number' => "123456ff",
                                                                    ),
                                                    ),
                                    'locales' => array(
                                                    'locale' => array(
                                                                    'language' => 'EN',
                                                                    'country' => 'US',
                                                                    'descriptions' => array(
                                                                                            'description' => array("type"=>1,
                                                                                                                    "CustomDescription"=>"This is a test")
                                                                                      ),
          'marketingDescription' => "This is the test Marketing Text",
        ),
      ),
    )
  );

実際の説明やマーケティング テキストなどの非属性値の受け渡しに問題があります

助けていただければ幸いです

4

1 に答える 1

0

少し文書化された「_」配列キーは、XML の一部の値を提供する必要があります (ここのコメントにあり、SOここに言及しています)。あなたの例では、これらの行に沿った何か-もちろんテストされていません:

function buildTask($db, $id=1) {
$task = array(
    'id' => $id++,
    'insertCustomProduct' => array(
        'manufacturerId' => "1234567",
        'manufacturerPartNo' => "ABC12345",
        'categoryId' => 10000000,
        'categoryType' => 'default',  
        'skus' => array(
            'sku' => array(
                'type' => 'Internal',
                'number' => "123456ff",
                ),
            ),
        'locales' => array(
                'locale' => array(
                'language' => 'EN',
                'country' => 'US',
                'descriptions' => array(
                    'description' => array("type"=>1,
                                    "_"=>"This is a test")
                                              ),
                'marketingDescription' => array( "_" => "This is the test Marketing Text"),
            ),
        ),
    )
  );
于 2012-06-12T03:40:03.223 に答える