2017-11-06 15 views
1

これは私が持っているコードです。これはksoap2を通して送信したいものです。配列内のオブジェクトが私のために問題を作り出しています。Ksoap2を使用して配列内にオブジェクトを送ります

<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:Magento" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> 
 
    <soapenv:Header/> 
 
    <soapenv:Body> 
 
     <urn:shoppingCartProductAdd soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> 
 
     <sessionId xsi:type="xsd:string">87a9cd5964e2dc1bf19a946a59a6175a</sessionId> 
 
     <quoteId xsi:type="xsd:int">716</quoteId> 
 
     <storeId xsi:type="xsd:string">1</storeId> 
 
     <products xsi:type="urn:shoppingCartProductEntityArray" soapenc:arrayType="urn:shoppingCartProductEntity[]"> 
 
     <shoppingCartProductEntity> 
 
     <product_id>500</product_id> 
 
     <qty>1</qty> 
 
     </shoppingCartProductEntity> 
 
     </products> 
 
     </urn:shoppingCartProductAdd> 
 
    </soapenv:Body> 
 
</soapenv:Envelope>

答えて

0

だけ<shoppingCartProductEntity>を無視して、すべてが私のために正常に動作します。

関連する問題