2

我正在尝试使用以下代码使用 Python Suds 连接到 Aramex 运送 SOAP API:

import suds
from suds.client import Client
client = Client('file:///home/test/test_wsdl_aramex/shipments-tracking-api-wsdl.wsdl',cache=None)

但开始后,我得到以下异常:

>     raise Exception("portType '%s', not-found" % self.type)
Exception: portType 'i0:Service_dd1_0', not-found

可以在此处找到 WSDL 文件源。

4

1 回答 1

2

错误在这里:

<wsdl:binding type="i0:Service_1_0" name="BasicHttpBinding_Service_1_0">

绑定元素有两个属性——名称和类型。

name 属性(您可以使用任何您想要的名称)定义绑定的名称,而 type 属性指向绑定的端口,在本例中为“glossaryTerms”端口。

所以解析器找不到端口type="i0:Service_1_0",在这个wsdl文件中有两个端口定义:

<wsdl:portType name="Service_1_0">
    <wsdl:operation name="TrackShipments">
      <wsdl:input name="ShipmentTrackingRequest" message="tns:ShipmentTrackingRequest" wsaw:Action="http://ws.aramex.net/ShippingAPI/v1/Service_1_0/TrackShipments"/>
      <wsdl:output name="ShipmentTrackingResponse" message="tns:ShipmentTrackingResponse" wsaw:Action="http://ws.aramex.net/ShippingAPI/v1/Service_1_0/TrackShipmentsResponse"/>
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:service name="Service_1_0">
    <wsdl:port name="BasicHttpBinding_Service_1_0" binding="i0:BasicHttpBinding_Service_1_0">
      <soap:address location="http://ws.aramex.net/shippingapi/tracking/service_1_0.svc"/>
    </wsdl:port>
  </wsdl:service>

所以现在您知道出了什么问题(更改 wsdl:binding 中的类型),并且您无法通过验证。

于 2013-08-02T12:45:13.473 回答