Liquid Studio Documentation
WSDL Editor / Graphical Notation Overview / Operation Output
In This Topic
    Operation Output
    In This Topic

    Graphical Representation

    Summary

    The Operation Output element represents an abstract function's usage for an Operation.

    Creating

    An Operation Output can be added to a Operation using the right click context menu.

    Properties

    Message - The Operation Output's Message.
    Name - The name of the Operation Output.
     

    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>