Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Magento多调用XML/soap_Xml_Magento_Soap - Fatal编程技术网

Magento多调用XML/soap

Magento多调用XML/soap,xml,magento,soap,Xml,Magento,Soap,有没有一个工具可以用来查找为magento php调用调用的SOAP 我正在尝试从magento站点写入/读取数据。我不在现场,我的代码是用PHP以外的语言实现的。我一直进展得很好,但最近注意到V1中的multicall方法 我遇到的问题是,我找不到有关MultiCallAPI的任何文档。当我在谷歌上搜索时,我看到很多关于它的问题,但没有文档 我想知道是否有一个Magento的家伙/女孩可以发布SOAP/XML来实现一个简单的multicall调用。我可以用它作为跳伞的基地 我在新西兰的好朋友寄

有没有一个工具可以用来查找为magento php调用调用的SOAP

我正在尝试从magento站点写入/读取数据。我不在现场,我的代码是用PHP以外的语言实现的。我一直进展得很好,但最近注意到V1中的multicall方法

我遇到的问题是,我找不到有关MultiCallAPI的任何文档。当我在谷歌上搜索时,我看到很多关于它的问题,但没有文档


我想知道是否有一个Magento的家伙/女孩可以发布SOAP/XML来实现一个简单的multicall调用。我可以用它作为跳伞的基地

我在新西兰的好朋友寄给我这个片段。这是多呼叫的一个例子

谢谢你,丹

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:multiCall>
<sessionId xsi:type="xsd:string">55444333222111c5eccf0bc5e3aea54d8</sessionId>
<calls SOAP-ENC:arrayType="xsd:ur-type[4]" xsi:type="ns1:FixedArray">
  <item SOAP-ENC:arrayType="xsd:string[2]" xsi:type="SOAP-ENC:Array">
    <item xsi:type="xsd:string">catalog_product.info</item>
    <item xsi:type="xsd:string">51</item>
  </item>
  <item SOAP-ENC:arrayType="xsd:string[2]" xsi:type="SOAP-ENC:Array">
    <item xsi:type="xsd:string">catalog_product.info</item>
    <item xsi:type="xsd:string">52</item>
  </item>
  <item SOAP-ENC:arrayType="xsd:string[2]" xsi:type="SOAP-ENC:Array">
    <item xsi:type="xsd:string">catalog_product.info</item>
    <item xsi:type="xsd:string">53</item>
  </item>
  <item SOAP-ENC:arrayType="xsd:string[2]" xsi:type="SOAP-ENC:Array">
    <item xsi:type="xsd:string">catalog_product.info</item>
    <item xsi:type="xsd:string">54</item>
  </item>
</calls>
<options xsi:nil="true"/>
</ns1:multiCall>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> 

5544433322111C5ECCF0BC5E3AEA54D8
catalog_product.info
51
catalog_product.info
52
catalog_product.info
53
catalog_product.info
54