Product Advertising API
Developer Guide (API Version 2011-08-01)
Print this pageEmail this pageGo to the ForumsView the PDFShare this page on TwitterShare this page on FacebookBookmark this page on DeliciousSubmit this page to RedditSubmit this page to DiggDid this page help you?  Yes  No   Tell us about it...

PortType

The association between operation names and their request and response definitions is created by the PortType element in the WSDL, for example:

<portType name="AWSECommerceServicePortType">
...
  <operation name="ItemSearch">
    <input message="tns:ItemSearchRequestMsg" />
    <output message="tns:ItemSearchResponseMsg" />
  </operation>

In this example, the operation, ItemSearch, is associated with its request and response definitions, ItemSearchRequestMsg and ItemSearchResponseMsg. The keywords, input and output, identify the operation's request and response definitions, respectively.