Concrete Implementation Definition: binding Element
  • The binding element describes the format and transport protocol for each message in an operation defined in the interface element.
  • The binding element corresponds to the interface element.
  • The syntax for the binding element is:

<binding name="BindingName" type="InterfaceName">
    <operation name="OperationName">
        <input>
        </input>
        <output>
        </output>
    </operation>
</binding>

where the name attribute specifies the binding name and the type attribute points to the interface being bound. In the operation element, name specifies the operation name.

In the code example, LibBinding is the binding name and LibInterface refers to the interface being bound.

  » View Media Description
Click the Next button to continue.