Liquid Studio Documentation
WSDL Editor / Graphical Notation Overview / Port Type
In This Topic
    Port Type
    In This Topic

    Graphical Representation

    Summary

    The Port Type element contains a set of abstract Operations that represent the abstract functions that can used between client and server.

    Creating

    A Port Type can be added as a root level item. This can be done using the right click context menu.

    Properties

    Name - The name of the Port Type, used in the type attribute of Binding.
     

    Sample

    The WSDL code for a Port Type containing an Operation with an Operation Input, Operation Output and Operation Fault:

    <portType name="NewPortType">

        <operation name="NewOperation">

            <input message="tns:NewInputMessage" />

            <output message="tns:NewOutputMessage" />

            <fault message="tns:ErrorMessage" />

        </operation>

    </portType>