WSDL Tutorial - Introduction

WSDL

Web Services Description Language describes SOAP service interfaces.

<definitions name="UserService"
    targetNamespace="http://example.com">
    <message name="GetUserRequest">
        <part name="userId" type="xsd:int"/>
    </message>
    <portType name="UserPort">
        <operation name="GetUser">
            <input message="GetUserRequest"/>
        </operation>
    </portType>
</definitions>

Summary

  • WSDL is an XML vocabulary for describing web services
  • Defines operations, messages, and bindings
← RDF Tutorial - IntroductionSOAP Tutorial - Introduction β†’

YouTip © 2024-2026 | Home | Learn Technology, Build Dreams!

All content is for educational and learning purposes only.