Magento社区1.6.2来自服务器的不同响应

时间:2012-03-19 16:23:06

标签: php api magento soap wsdl

我正在针对两个不同的Magento Community 1.6.2安装调用'catalogProductAttributeSetList',他们以不同的格式返回结果。

服务器1

WSDL:www.indo-pac.biz / api / v2_soap?wsdl = 1 PHPINFO:www.indo-pac.biz / info.php

响应:

<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"           xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"   xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <SOAP-ENV:Body>
     <ns1:catalogProductAttributeSetListResponse>
     <result SOAP-ENC:arrayType="ns1:catalogProductAttributeSetEntity[2]" xsi:type="ns1:catalogProductAttributeSetEntityArray">
        <item xsi:type="ns1:catalogProductAttributeSetEntity">
           <set_id xsi:type="xsd:int">9</set_id>
           <name xsi:type="xsd:string">Cameras</name>
        </item>
        <item xsi:type="ns1:catalogProductAttributeSetEntity">
           <set_id xsi:type="xsd:int">4</set_id>
           <name xsi:type="xsd:string">Default</name>
        </item>
     </result>
  </ns1:catalogProductAttributeSetListResponse>

<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <ns1:catalogProductAttributeSetListResponse> <result SOAP-ENC:arrayType="ns1:catalogProductAttributeSetEntity[2]" xsi:type="ns1:catalogProductAttributeSetEntityArray"> <item xsi:type="ns1:catalogProductAttributeSetEntity"> <set_id xsi:type="xsd:int">9</set_id> <name xsi:type="xsd:string">Cameras</name> </item> <item xsi:type="ns1:catalogProductAttributeSetEntity"> <set_id xsi:type="xsd:int">4</set_id> <name xsi:type="xsd:string">Default</name> </item> </result> </ns1:catalogProductAttributeSetListResponse>

**服务器2 **

WSDL:http://magento.a-dot.co.uk/api/v2_soap?wsdl=1 phpinfo:http://s33667.gridserver.com/gs-bin/phpinfo.php-stable

Response:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"       xmlns:ns1="urn:Magento" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-  ENC="http://schemas.xmlsoap.org/soap/encoding/"   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
  <SOAP-ENV:Body>
<ns1:catalogProductAttributeSetListResponse>
  <result SOAP-ENC:arrayType="ns2:Map[2]"   xsi:type="ns1:catalogProductAttributeSetEntityArray">
        <item xsi:type="ns2:Map">
      <item>
        <key xsi:type="xsd:string">set_id</key>
        <value xsi:type="xsd:string">4</value>
      </item>
      <item>
        <key xsi:type="xsd:string">name</key>
        <value xsi:type="xsd:string">Default</value>
      </item>
    </item>
    <item xsi:type="ns2:Map">
      <item>
        <key xsi:type="xsd:string">set_id</key>
        <value xsi:type="xsd:string">9</value>
      </item>
      <item>
        <key xsi:type="xsd:string">name</key>
        <value xsi:type="xsd:string">Ladies Shoes</value>
      </item>
    </item>
  </result>
</ns1:catalogProductAttributeSetListResponse>

有人可以解释为什么结果不同吗?请求完全相同。我正在使用soapUI 4.0.1验证发送的响应(我还使用Java目击了它)

我怀疑它在服务器上的SOAP库不匹配,但如何验证呢?

由于

2 个答案:

答案 0 :(得分:2)

Magento为他们的v2 SOAP API提供了两种不同的模式。我的猜测是一台服务器处于“WS-I”模式,另一台则没有。让相关商店的管理员检查

中的设置
System -> Configuration -> Services -> Magento Core API -> WS-I Compliance

答案 1 :(得分:1)

服务器2的响应是通过启用WSI合规性来实现的。请确保刷新缓存。您可以通过在服务器2上调用Mage :: getStoreConfig('api / config / compalince_wsi')来仔细检查并打印出返回的内容。 我检查了CE 1.6.2上的数据,通过禁用WSI合规性获得第一个响应,通过启用WSI合规性接收第二个响应。