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

    Graphical Representation

    Summary

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

    Creating

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

    Properties

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

    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>