一部に次のような 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",
),
),
)
);
実際の説明やマーケティング テキストなどの非属性値の受け渡しに問題があります
助けていただければ幸いです