SlideShare a Scribd company logo
1 of 29
WSDL - Web Services
Description Language
List of Topics
 WSDL Description
 WSDL Elements
 Definition
 Type
 Message
 Port type
 Binding
 Port
 Service
 WSDL 1.0 and 2.0
 Summary
WSDL Describes Web Services
 WSDL stands for Web Services Description Language.
 WSDL is a document written in XML. The document describes
a Web service. It specifies the location of the service and the
operations (or methods) the service exposes.
 A WSDL description of a web service (also referred to as
a WSDL file) provides a machine-readable description of how
the service can be called what parameters it expects and
what data structures it returns.
 WSDL was developed jointly by Microsoft and IBM initially.
 WSDL is pronounced as 'wiz-dull' and spelled out as 'W-S-D-
L'
WSDL Usage
WSDL is often used in combination with SOAP and XML Schema to
provide web services over the Internet. A client program connecting
to a web service can read the WSDL to determine what functions
are available on the server. The client can then use SOAP to
actually call one of the functions listed in the WSDL.
WSDL example
Structure of a WSDL document
<definitions>
<types>
definition of types........
</types>
<message>
definition of a message....
</message>
<portType>
<operation>
definition of a operation.......
</operation>
</portType>
<binding>
definition of a binding....
</binding>
<service>
definition of a service....
</service>
</definitions>
A WSDL document has various elements, but they are contained within these main
elements, which can be developed as separate documents and then they can be
combined or reused to form complete WSDL files.
WSDL Elements overview
 Definition: Element must be the root element of all WSDL documents. It
defines the name of the web service, declares multiple namespaces used
throughout the remainder of the document and contains all the service
elements described here.
 Data types: the data types - in the form of XML schemas or possibly some
other mechanism - to be used in the messages
 Message: An abstract definition of the data in the form of a message
presented either as an arguments to be mapped to a method invocation.
 Operation: An abstract definition of the operation for a message such as
naming a method, message queue or business process that will accept and
process the message
 Port type : An abstract set of operations mapped to one or more end
points, defining the collection of operations for a binding
WSDL Elements overview (cont..)
 Binding: the concrete protocol and data formats for the operations
and messages defined for a particular port type.
 Port: a combination of a binding and a network address, providing
the target address of the service communication.
 Service: a collection of related end points encompassing the
service definitions in the file.
WSDL Elements
 <definition> Element : It must be the root element of all WSDL documents. It
defines the name of the web service.
<definitions name="HelloService"
targetNamespace="http://www.examples.com/wsdl/HelloService.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.examples.com/wsdl/HelloService.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> .........................
</definitions>
 <Type> Element:
 A Web service needs to define its inputs and outputs and how they are mapped into and out
of services. WSDL <types> element take care of defining the data types that are used by the
web service.
 It describes all the data types used between the client and server.
 WSDL uses the W3C XML Schema specification as its default choice to define data types
 If the service uses only XML Schema built-in simple types, such as strings and integers,
then types element is not required (Refer HelloService.wsdl)
Type Elements cont…
 WSDL allows the types to be defined in separate elements so that
the types are reusable with multiple Web services.
Elements cont…
 <message> Element:
 It describes the data being exchanged between the Web service providers and
consumers.
 Each Web Service has two messages: input and output.
 The input describes the parameters for the Web Service and the output
describes the return data from the Web Service.
 Each message contains zero or more <part> parameters, one for each
parameter of the Web Service's function.
 Each <part> parameter associates with a concrete type defined in
the <types> container element.
Elements cont…
 <portType> Element: It combines multiple message elements to form a
complete one-way or round-trip operation.
 One-way :
The service receives a message. The operation therefore has a single input element.
which is the client's request to the server. No response is expected.
<operation name="weatherUpdate">
<input message="tns:weatherUpdate"/>
</operation>
<message name="weatherUpdate">
<part name="weatherData" type="wsx:WeatherSummary"/>
</message>
PortType Elements cont…
 Request-response:
The service receives a message and sends a response. The operation therefore has one input
element, followed by one output element.
<operation name="subscribe">
<input message="tns:subscribe"/>
<output message="tns:subscribeResponse"/>
</operation>
<message name="subscribe">
<part name="host" type="xsd:string"/>
<part name="port" type="xsd:string"/>
<part name="transportName" type="xsd:string"/>
</message>
PortType Elements cont…
 Solicit-response:
The solicit-response operation includes one output element, which is the server's
request to the client, followed by one input element, which is the client's response
back to the server.
<operation name="verifySubscription">
<output message="tns:verifySubscription"/>
<input message="tns:verifySubscriptionResponse"/>
</operation>
<message name="verifySubscriptionResponse">
<part name="status" type="xsd:boolean"/>
</message>
PortType Elements cont…
 Notification :
The service sends a message. The operation therefore has a
single output element.
<operation name="weatherNotification">
<output message="tns:weatherNotification"/>
</operation>
<message name="weatherNotification">
<part name="weatherData" type="wsx:WeatherSummary"/>
</message>
Elements cont…
 <port> element:
 The port element has two attributes - the name attribute and the binding attribute.
 The name attribute provides a unique name among all ports defined within in the enclosing
WSDL document.
 The binding attribute refers to the binding using the linking rules defined by WSDL.
 Binding extensibility elements (1) are used to specify the address information for the port.
 A port MUST NOT specify more than one address.
 A port MUST NOT specify any binding information other than address information.
Elements cont…
 <binding> element
 provides specific details on how a portType operation will actually be transmitted
over the wire.
 The bindings can be made available via multiple transports, including SOAP over
HTTP GET, HTTP POST
 The bindings provide concrete information on what protocol is being used to
transfer portType operations.
 The bindings provide information where the service is located.
 For SOAP protocol, the binding is <soap:binding>, and the transport is SOAP
messages on top of HTTP protocol.
 You can specify multiple bindings for a single portType.
<binding name="Hello_Binding" type="tns:Hello_PortType">
The name attribute defines the name of the binding, and the type attribute points to
the port for the binding, in this case the "tns:Hello_PortType" port.
Binding Elements cont…
 SOAP Binding
WSDL 1.1 includes built-in extensions for SOAP 1.1. This enables you to specify
SOAP specific details, including SOAP headers, SOAP encoding styles, and the
SOAPAction HTTP header. The SOAP extension elements include:
 soap:binding
This element indicates that the binding will be made available via SOAP.
The style attribute indicates the overall style of the SOAP message format. A style
value of rpc specifies an RPC format.
The transport attribute indicates the transport of the SOAP messages. The value
http://schemas.xmlsoap.org/soap/http indicates the SOAP HTTP transport, whereas
http://schemas.xmlsoap.org/soap/smtp indicates the SOAP SMTP transport.
 soap:operation
This element indicates the binding of a specific operation to a specific SOAP
implementation. The soapAction attribute specifies that the SOAPAction HTTP
header be used for identifying the service.
Binding Elements cont…
 soap:body
This element enables you to specify the details of the input and output messages. In
the case of HelloWorld, the body element specifies the SOAP encoding style and the
namespace URN associated with the specified service.
Elements cont…
 <service> Element:
 Defines the ports supported by the Web service. For each of the supported
protocols, there is one port element. The service element is a collection of ports.
 Web service clients can learn from the service element where to access the
service, through which port to access the Web service, and how the
communication messages are defined.
 The service element includes a documentation element to provide human-
readable documentation.
HelloService.wsdl
 Content of HelloService.wsdl file (see attached file)
 Analysis of the wsdl file
Definition : HelloService
Type : Using built-in data types and they are defined in XMLSchema.
Message :
 sayHelloRequest : firstName parameter
 sayHelloresponse: greeting return value
Port Type: sayHello operation that consists of a request and response service.
Binding: Direction to use the SOAP HTTP transport protocol.
Service: Service available at http://www.examples.com/SayHello/.
Port: Associates the binding with the URI http://www.examples.com/SayHello/ where
the running service can be accessed.
HelloService.wsdl
WSDL 1.1 and 2.0 difference
Difference between 1.1 and 2.0
WSDL 1.1
Term
WSDL 2.0
Term
Description
Service Service
Contains a set of system functions that have been exposed
to the Web-based protocols.
Port Endpoint
Defines the address or connection point to a Web service. It
is typically represented by a simple HTTP URL string.
Binding Binding
Specifies the interface and defines the SOAP binding style (
RPC/Document) and transport (SOAP Protocol). The
binding section also defines the operations.
PortType Interface
Defines a Web service, the operations that can be
performed, and the messages that are used to perform the
operation.
Operation Operation
Defines the SOAP actions and the way the message
is encoded, for example, "literal." An operation is like
a method or function call in a traditional programming
language.
Difference cont…
Message n/a
Typically, a message corresponds to an operation. The message
contains the information needed to perform the operation. Each
message is made up of one or more logical parts. Each part is
associated with a message-typing attribute. The message name
attribute provides a unique name among all messages. The part
name attribute provides a unique name among all the parts of the
enclosing message. Parts are a description of the logical content of
a message. In RPC binding, a binding may reference the name of a
part in order to specify binding-specific information about the part.
A part may represent a parameter in the message; the bindings
define the actual meaning of the part. Messages were removed in
WSDL 2.0, in which XML schema types for defining bodies of
inputs, outputs and faults are referred to simply and directly.
Types Types
Describes the data. The XML Schema language (also
known as XSD) is used (inline or referenced) for this
purpose.
WSDL 2.0
 WSDL 2.0 became a W3C recommendation on June
2007. WSDL 1.2 was renamed to WSDL 2.0 because it
has substantial differences from WSDL 1.1. The
changes are the following:
 Added further semantics to the description language
 Removed message constructs
 Operator overloading not supported
 PortTypes renamed to interfaces
 Ports renamed to endpoints
WSDL and UDDI
Universal Description, Discovery and Integration (UDDI) is a directory service where
businesses can register and search for Web services.
What is UDDI
•UDDI is a platform-independent framework for describing services,
discovering businesses, and integrating business services by using the
Internet.
•UDDI is a directory for storing information about web services
•UDDI is a directory of web service interfaces described by WSDL
•UDDI communicates via SOAP
What is UDDI Based On?
 UDDI uses World Wide Web Consortium (W3C)
and Internet Engineering Task Force (IETF)
Internet standards such as XML, HTTP, and
DNS protocols.
 UDDI uses WSDL to describe interfaces to web
services
 Additionally, cross platform programming
features are addressed by adopting SOAP,
known as XML Protocol messaging
specifications found at the W3C Web site
Who is Supporting UDDI?
 UDDI is a cross-industry effort driven by all
major platform and software providers like Dell,
Fujitsu, HP, Hitachi, IBM, Intel, Microsoft,
Oracle, SAP, and Sun, as well as a large
community of marketplace operators, and e-
business leaders.
 Over 220 companies are members of the UDDI
community.
Summary:
 Web Services
Web services are open standard ( XML, SOAP, HTTP etc.) based Web
applications that interact with other web applications for the purpose of
exchanging data.
 UDDI
UDDI is an XML-based standard for describing, publishing, and finding Web
services.
 SOAP
SOAP is a simple XML-based protocol that allows applications to exchange
information over HTTP.

More Related Content

What's hot

What's hot (20)

Web service Introduction
Web service IntroductionWeb service Introduction
Web service Introduction
 
Webservices
WebservicesWebservices
Webservices
 
Xml parsers
Xml parsersXml parsers
Xml parsers
 
Uddi
UddiUddi
Uddi
 
An Overview of Web Services: SOAP and REST
An Overview of Web Services: SOAP and REST An Overview of Web Services: SOAP and REST
An Overview of Web Services: SOAP and REST
 
XSLT
XSLTXSLT
XSLT
 
Web Service Presentation
Web Service PresentationWeb Service Presentation
Web Service Presentation
 
Soap vs rest
Soap vs restSoap vs rest
Soap vs rest
 
Windows Communication Foundation (WCF)
Windows Communication Foundation (WCF)Windows Communication Foundation (WCF)
Windows Communication Foundation (WCF)
 
Soap and restful webservice
Soap and restful webserviceSoap and restful webservice
Soap and restful webservice
 
Css
CssCss
Css
 
Web api
Web apiWeb api
Web api
 
Introduction to the Web API
Introduction to the Web APIIntroduction to the Web API
Introduction to the Web API
 
Web Services - Architecture and SOAP (part 1)
Web Services - Architecture and SOAP (part 1)Web Services - Architecture and SOAP (part 1)
Web Services - Architecture and SOAP (part 1)
 
HTTP request and response
HTTP request and responseHTTP request and response
HTTP request and response
 
Soap web service
Soap web serviceSoap web service
Soap web service
 
Soap Vs Rest
Soap Vs RestSoap Vs Rest
Soap Vs Rest
 
HTTP Basics
HTTP BasicsHTTP Basics
HTTP Basics
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
 
SOAP vs REST
SOAP vs RESTSOAP vs REST
SOAP vs REST
 

Viewers also liked

WebServices SOAP WSDL and UDDI
WebServices SOAP WSDL and UDDIWebServices SOAP WSDL and UDDI
WebServices SOAP WSDL and UDDIRajkattamuri
 
Introduction to Service Oriented Architectures, SOAP/WSDL Web Services and RE...
Introduction to Service Oriented Architectures, SOAP/WSDL Web Services and RE...Introduction to Service Oriented Architectures, SOAP/WSDL Web Services and RE...
Introduction to Service Oriented Architectures, SOAP/WSDL Web Services and RE...ecosio GmbH
 
Introduction to SOAP
Introduction to SOAPIntroduction to SOAP
Introduction to SOAPSafwan Hashmi
 
Description of soa and SOAP,WSDL & UDDI
Description of soa and SOAP,WSDL & UDDIDescription of soa and SOAP,WSDL & UDDI
Description of soa and SOAP,WSDL & UDDITUSHAR VARSHNEY
 
Introduction to SOAP/WSDL Web Services and RESTful Web Services
Introduction to SOAP/WSDL Web Services and RESTful Web ServicesIntroduction to SOAP/WSDL Web Services and RESTful Web Services
Introduction to SOAP/WSDL Web Services and RESTful Web Servicesecosio GmbH
 
Introduction to xml
Introduction to xmlIntroduction to xml
Introduction to xmlGtu Booker
 

Viewers also liked (20)

WebServices SOAP WSDL and UDDI
WebServices SOAP WSDL and UDDIWebServices SOAP WSDL and UDDI
WebServices SOAP WSDL and UDDI
 
Introduction to Service Oriented Architectures, SOAP/WSDL Web Services and RE...
Introduction to Service Oriented Architectures, SOAP/WSDL Web Services and RE...Introduction to Service Oriented Architectures, SOAP/WSDL Web Services and RE...
Introduction to Service Oriented Architectures, SOAP/WSDL Web Services and RE...
 
Wsdl
WsdlWsdl
Wsdl
 
Wsdl
WsdlWsdl
Wsdl
 
Web services wsdl
Web services wsdlWeb services wsdl
Web services wsdl
 
Web services uddi
Web services uddiWeb services uddi
Web services uddi
 
REST Basics
REST BasicsREST Basics
REST Basics
 
Web Services - WSDL
Web Services - WSDLWeb Services - WSDL
Web Services - WSDL
 
WSDL 2.0 and Apache Woden
WSDL 2.0 and Apache WodenWSDL 2.0 and Apache Woden
WSDL 2.0 and Apache Woden
 
Web service
Web serviceWeb service
Web service
 
Introduction to SOAP
Introduction to SOAPIntroduction to SOAP
Introduction to SOAP
 
Description of soa and SOAP,WSDL & UDDI
Description of soa and SOAP,WSDL & UDDIDescription of soa and SOAP,WSDL & UDDI
Description of soa and SOAP,WSDL & UDDI
 
Web Services
Web ServicesWeb Services
Web Services
 
Xml
XmlXml
Xml
 
Introduction to SOAP/WSDL Web Services and RESTful Web Services
Introduction to SOAP/WSDL Web Services and RESTful Web ServicesIntroduction to SOAP/WSDL Web Services and RESTful Web Services
Introduction to SOAP/WSDL Web Services and RESTful Web Services
 
SOAP-based Web Services
SOAP-based Web ServicesSOAP-based Web Services
SOAP-based Web Services
 
Introduction to xml
Introduction to xmlIntroduction to xml
Introduction to xml
 
Web Services
Web ServicesWeb Services
Web Services
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XML
 
Xml ppt
Xml pptXml ppt
Xml ppt
 

Similar to WSDL

Lecture 16 - Web Services
Lecture 16 - Web ServicesLecture 16 - Web Services
Lecture 16 - Web Servicesphanleson
 
WS-Addressing: Enabling Transport-Neutral Message Addressing and Correlation
WS-Addressing: Enabling Transport-Neutral Message Addressing and CorrelationWS-Addressing: Enabling Transport-Neutral Message Addressing and Correlation
WS-Addressing: Enabling Transport-Neutral Message Addressing and CorrelationJeffrey Hasan
 
Web services for developer
Web services for developerWeb services for developer
Web services for developerRafiq Ahmed
 
Understanding Web Services by software outsourcing company india
Understanding Web Services by software outsourcing company indiaUnderstanding Web Services by software outsourcing company india
Understanding Web Services by software outsourcing company indiaJignesh Aakoliya
 
Topic6 Basic Web Services Technology
Topic6 Basic Web Services TechnologyTopic6 Basic Web Services Technology
Topic6 Basic Web Services Technologysanjoysanyal
 
Topic6 Basic Web Services Technology
Topic6 Basic Web Services TechnologyTopic6 Basic Web Services Technology
Topic6 Basic Web Services Technologysanjoysanyal
 
Ogsi protocol perspective
Ogsi protocol perspectiveOgsi protocol perspective
Ogsi protocol perspectivePooja Dixit
 
Cloud computing 22 soap and uddi in services
Cloud computing 22 soap and uddi in servicesCloud computing 22 soap and uddi in services
Cloud computing 22 soap and uddi in servicesVaibhav Khanna
 
Java Web Services [3/5]: WSDL, WADL and UDDI
Java Web Services [3/5]: WSDL, WADL and UDDIJava Web Services [3/5]: WSDL, WADL and UDDI
Java Web Services [3/5]: WSDL, WADL and UDDIIMC Institute
 
Soazczxczxzxczxzxvvxvvzvefxcsczxczxcsxczxczxcxzc
SoazczxczxzxczxzxvvxvvzvefxcsczxczxcsxczxczxcxzcSoazczxczxzxczxzxvvxvvzvefxcsczxczxcsxczxczxcxzc
SoazczxczxzxczxzxvvxvvzvefxcsczxczxcsxczxczxcxzcImran Gadi
 

Similar to WSDL (20)

Webservices
WebservicesWebservices
Webservices
 
Lecture 16 - Web Services
Lecture 16 - Web ServicesLecture 16 - Web Services
Lecture 16 - Web Services
 
Web services
Web servicesWeb services
Web services
 
WS-Addressing: Enabling Transport-Neutral Message Addressing and Correlation
WS-Addressing: Enabling Transport-Neutral Message Addressing and CorrelationWS-Addressing: Enabling Transport-Neutral Message Addressing and Correlation
WS-Addressing: Enabling Transport-Neutral Message Addressing and Correlation
 
Web services
Web servicesWeb services
Web services
 
Web services for developer
Web services for developerWeb services for developer
Web services for developer
 
Understanding Web Services by software outsourcing company india
Understanding Web Services by software outsourcing company indiaUnderstanding Web Services by software outsourcing company india
Understanding Web Services by software outsourcing company india
 
seert
seertseert
seert
 
Topic6 Basic Web Services Technology
Topic6 Basic Web Services TechnologyTopic6 Basic Web Services Technology
Topic6 Basic Web Services Technology
 
Topic6 Basic Web Services Technology
Topic6 Basic Web Services TechnologyTopic6 Basic Web Services Technology
Topic6 Basic Web Services Technology
 
Web services
Web services Web services
Web services
 
Web Services
Web Services Web Services
Web Services
 
Webservices
WebservicesWebservices
Webservices
 
Ogsi protocol perspective
Ogsi protocol perspectiveOgsi protocol perspective
Ogsi protocol perspective
 
SCDJWS 3. WSDL
SCDJWS 3. WSDLSCDJWS 3. WSDL
SCDJWS 3. WSDL
 
Cloud computing 22 soap and uddi in services
Cloud computing 22 soap and uddi in servicesCloud computing 22 soap and uddi in services
Cloud computing 22 soap and uddi in services
 
WSDL Services
WSDL ServicesWSDL Services
WSDL Services
 
Java Web Services [3/5]: WSDL, WADL and UDDI
Java Web Services [3/5]: WSDL, WADL and UDDIJava Web Services [3/5]: WSDL, WADL and UDDI
Java Web Services [3/5]: WSDL, WADL and UDDI
 
Soazczxczxzxczxzxvvxvvzvefxcsczxczxcsxczxczxcxzc
SoazczxczxzxczxzxvvxvvzvefxcsczxczxcsxczxczxcxzcSoazczxczxzxczxzxvvxvvzvefxcsczxczxcsxczxczxcxzc
Soazczxczxzxczxzxvvxvvzvefxcsczxczxcsxczxczxcxzc
 
Web services overview
Web services overviewWeb services overview
Web services overview
 

Recently uploaded

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 

Recently uploaded (20)

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 

WSDL

  • 1. WSDL - Web Services Description Language
  • 2. List of Topics  WSDL Description  WSDL Elements  Definition  Type  Message  Port type  Binding  Port  Service  WSDL 1.0 and 2.0  Summary
  • 3. WSDL Describes Web Services  WSDL stands for Web Services Description Language.  WSDL is a document written in XML. The document describes a Web service. It specifies the location of the service and the operations (or methods) the service exposes.  A WSDL description of a web service (also referred to as a WSDL file) provides a machine-readable description of how the service can be called what parameters it expects and what data structures it returns.  WSDL was developed jointly by Microsoft and IBM initially.  WSDL is pronounced as 'wiz-dull' and spelled out as 'W-S-D- L'
  • 4. WSDL Usage WSDL is often used in combination with SOAP and XML Schema to provide web services over the Internet. A client program connecting to a web service can read the WSDL to determine what functions are available on the server. The client can then use SOAP to actually call one of the functions listed in the WSDL.
  • 6. Structure of a WSDL document <definitions> <types> definition of types........ </types> <message> definition of a message.... </message> <portType> <operation> definition of a operation....... </operation> </portType> <binding> definition of a binding.... </binding> <service> definition of a service.... </service> </definitions> A WSDL document has various elements, but they are contained within these main elements, which can be developed as separate documents and then they can be combined or reused to form complete WSDL files.
  • 7. WSDL Elements overview  Definition: Element must be the root element of all WSDL documents. It defines the name of the web service, declares multiple namespaces used throughout the remainder of the document and contains all the service elements described here.  Data types: the data types - in the form of XML schemas or possibly some other mechanism - to be used in the messages  Message: An abstract definition of the data in the form of a message presented either as an arguments to be mapped to a method invocation.  Operation: An abstract definition of the operation for a message such as naming a method, message queue or business process that will accept and process the message  Port type : An abstract set of operations mapped to one or more end points, defining the collection of operations for a binding
  • 8. WSDL Elements overview (cont..)  Binding: the concrete protocol and data formats for the operations and messages defined for a particular port type.  Port: a combination of a binding and a network address, providing the target address of the service communication.  Service: a collection of related end points encompassing the service definitions in the file.
  • 9. WSDL Elements  <definition> Element : It must be the root element of all WSDL documents. It defines the name of the web service. <definitions name="HelloService" targetNamespace="http://www.examples.com/wsdl/HelloService.wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.examples.com/wsdl/HelloService.wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ......................... </definitions>  <Type> Element:  A Web service needs to define its inputs and outputs and how they are mapped into and out of services. WSDL <types> element take care of defining the data types that are used by the web service.  It describes all the data types used between the client and server.  WSDL uses the W3C XML Schema specification as its default choice to define data types  If the service uses only XML Schema built-in simple types, such as strings and integers, then types element is not required (Refer HelloService.wsdl)
  • 10. Type Elements cont…  WSDL allows the types to be defined in separate elements so that the types are reusable with multiple Web services.
  • 11. Elements cont…  <message> Element:  It describes the data being exchanged between the Web service providers and consumers.  Each Web Service has two messages: input and output.  The input describes the parameters for the Web Service and the output describes the return data from the Web Service.  Each message contains zero or more <part> parameters, one for each parameter of the Web Service's function.  Each <part> parameter associates with a concrete type defined in the <types> container element.
  • 12. Elements cont…  <portType> Element: It combines multiple message elements to form a complete one-way or round-trip operation.  One-way : The service receives a message. The operation therefore has a single input element. which is the client's request to the server. No response is expected. <operation name="weatherUpdate"> <input message="tns:weatherUpdate"/> </operation> <message name="weatherUpdate"> <part name="weatherData" type="wsx:WeatherSummary"/> </message>
  • 13. PortType Elements cont…  Request-response: The service receives a message and sends a response. The operation therefore has one input element, followed by one output element. <operation name="subscribe"> <input message="tns:subscribe"/> <output message="tns:subscribeResponse"/> </operation> <message name="subscribe"> <part name="host" type="xsd:string"/> <part name="port" type="xsd:string"/> <part name="transportName" type="xsd:string"/> </message>
  • 14. PortType Elements cont…  Solicit-response: The solicit-response operation includes one output element, which is the server's request to the client, followed by one input element, which is the client's response back to the server. <operation name="verifySubscription"> <output message="tns:verifySubscription"/> <input message="tns:verifySubscriptionResponse"/> </operation> <message name="verifySubscriptionResponse"> <part name="status" type="xsd:boolean"/> </message>
  • 15. PortType Elements cont…  Notification : The service sends a message. The operation therefore has a single output element. <operation name="weatherNotification"> <output message="tns:weatherNotification"/> </operation> <message name="weatherNotification"> <part name="weatherData" type="wsx:WeatherSummary"/> </message>
  • 16. Elements cont…  <port> element:  The port element has two attributes - the name attribute and the binding attribute.  The name attribute provides a unique name among all ports defined within in the enclosing WSDL document.  The binding attribute refers to the binding using the linking rules defined by WSDL.  Binding extensibility elements (1) are used to specify the address information for the port.  A port MUST NOT specify more than one address.  A port MUST NOT specify any binding information other than address information.
  • 17. Elements cont…  <binding> element  provides specific details on how a portType operation will actually be transmitted over the wire.  The bindings can be made available via multiple transports, including SOAP over HTTP GET, HTTP POST  The bindings provide concrete information on what protocol is being used to transfer portType operations.  The bindings provide information where the service is located.  For SOAP protocol, the binding is <soap:binding>, and the transport is SOAP messages on top of HTTP protocol.  You can specify multiple bindings for a single portType. <binding name="Hello_Binding" type="tns:Hello_PortType"> The name attribute defines the name of the binding, and the type attribute points to the port for the binding, in this case the "tns:Hello_PortType" port.
  • 18. Binding Elements cont…  SOAP Binding WSDL 1.1 includes built-in extensions for SOAP 1.1. This enables you to specify SOAP specific details, including SOAP headers, SOAP encoding styles, and the SOAPAction HTTP header. The SOAP extension elements include:  soap:binding This element indicates that the binding will be made available via SOAP. The style attribute indicates the overall style of the SOAP message format. A style value of rpc specifies an RPC format. The transport attribute indicates the transport of the SOAP messages. The value http://schemas.xmlsoap.org/soap/http indicates the SOAP HTTP transport, whereas http://schemas.xmlsoap.org/soap/smtp indicates the SOAP SMTP transport.  soap:operation This element indicates the binding of a specific operation to a specific SOAP implementation. The soapAction attribute specifies that the SOAPAction HTTP header be used for identifying the service.
  • 19. Binding Elements cont…  soap:body This element enables you to specify the details of the input and output messages. In the case of HelloWorld, the body element specifies the SOAP encoding style and the namespace URN associated with the specified service.
  • 20. Elements cont…  <service> Element:  Defines the ports supported by the Web service. For each of the supported protocols, there is one port element. The service element is a collection of ports.  Web service clients can learn from the service element where to access the service, through which port to access the Web service, and how the communication messages are defined.  The service element includes a documentation element to provide human- readable documentation.
  • 21. HelloService.wsdl  Content of HelloService.wsdl file (see attached file)  Analysis of the wsdl file Definition : HelloService Type : Using built-in data types and they are defined in XMLSchema. Message :  sayHelloRequest : firstName parameter  sayHelloresponse: greeting return value Port Type: sayHello operation that consists of a request and response service. Binding: Direction to use the SOAP HTTP transport protocol. Service: Service available at http://www.examples.com/SayHello/. Port: Associates the binding with the URI http://www.examples.com/SayHello/ where the running service can be accessed. HelloService.wsdl
  • 22. WSDL 1.1 and 2.0 difference
  • 23. Difference between 1.1 and 2.0 WSDL 1.1 Term WSDL 2.0 Term Description Service Service Contains a set of system functions that have been exposed to the Web-based protocols. Port Endpoint Defines the address or connection point to a Web service. It is typically represented by a simple HTTP URL string. Binding Binding Specifies the interface and defines the SOAP binding style ( RPC/Document) and transport (SOAP Protocol). The binding section also defines the operations. PortType Interface Defines a Web service, the operations that can be performed, and the messages that are used to perform the operation. Operation Operation Defines the SOAP actions and the way the message is encoded, for example, "literal." An operation is like a method or function call in a traditional programming language.
  • 24. Difference cont… Message n/a Typically, a message corresponds to an operation. The message contains the information needed to perform the operation. Each message is made up of one or more logical parts. Each part is associated with a message-typing attribute. The message name attribute provides a unique name among all messages. The part name attribute provides a unique name among all the parts of the enclosing message. Parts are a description of the logical content of a message. In RPC binding, a binding may reference the name of a part in order to specify binding-specific information about the part. A part may represent a parameter in the message; the bindings define the actual meaning of the part. Messages were removed in WSDL 2.0, in which XML schema types for defining bodies of inputs, outputs and faults are referred to simply and directly. Types Types Describes the data. The XML Schema language (also known as XSD) is used (inline or referenced) for this purpose.
  • 25. WSDL 2.0  WSDL 2.0 became a W3C recommendation on June 2007. WSDL 1.2 was renamed to WSDL 2.0 because it has substantial differences from WSDL 1.1. The changes are the following:  Added further semantics to the description language  Removed message constructs  Operator overloading not supported  PortTypes renamed to interfaces  Ports renamed to endpoints
  • 26. WSDL and UDDI Universal Description, Discovery and Integration (UDDI) is a directory service where businesses can register and search for Web services. What is UDDI •UDDI is a platform-independent framework for describing services, discovering businesses, and integrating business services by using the Internet. •UDDI is a directory for storing information about web services •UDDI is a directory of web service interfaces described by WSDL •UDDI communicates via SOAP
  • 27. What is UDDI Based On?  UDDI uses World Wide Web Consortium (W3C) and Internet Engineering Task Force (IETF) Internet standards such as XML, HTTP, and DNS protocols.  UDDI uses WSDL to describe interfaces to web services  Additionally, cross platform programming features are addressed by adopting SOAP, known as XML Protocol messaging specifications found at the W3C Web site
  • 28. Who is Supporting UDDI?  UDDI is a cross-industry effort driven by all major platform and software providers like Dell, Fujitsu, HP, Hitachi, IBM, Intel, Microsoft, Oracle, SAP, and Sun, as well as a large community of marketplace operators, and e- business leaders.  Over 220 companies are members of the UDDI community.
  • 29. Summary:  Web Services Web services are open standard ( XML, SOAP, HTTP etc.) based Web applications that interact with other web applications for the purpose of exchanging data.  UDDI UDDI is an XML-based standard for describing, publishing, and finding Web services.  SOAP SOAP is a simple XML-based protocol that allows applications to exchange information over HTTP.