使用Suds的端口类型中的异常

时间:2013-08-01 16:22:58

标签: python soap wsdl suds aramex

我正在尝试使用以下代码使用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文件源here

1 个答案:

答案 0 :(得分: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中的更改类型),你无法通过验证。