SlideShare une entreprise Scribd logo
1  sur  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.

Contenu connexe

Tendances (20)

Web Services - WSDL
Web Services - WSDLWeb Services - WSDL
Web Services - WSDL
 
Introduction to Web Architecture
Introduction to Web ArchitectureIntroduction to Web Architecture
Introduction to Web Architecture
 
Web service Introduction
Web service IntroductionWeb service Introduction
Web service Introduction
 
Web services
Web servicesWeb services
Web services
 
REST & RESTful Web Services
REST & RESTful Web ServicesREST & RESTful Web Services
REST & RESTful Web Services
 
SOAP-based Web Services
SOAP-based Web ServicesSOAP-based Web Services
SOAP-based Web Services
 
Java Servlets
Java ServletsJava Servlets
Java Servlets
 
Client Server Architecture ppt
Client Server Architecture pptClient Server Architecture ppt
Client Server Architecture ppt
 
Java Server Pages
Java Server PagesJava Server Pages
Java Server Pages
 
Remote Method Invocation
Remote Method InvocationRemote Method Invocation
Remote Method Invocation
 
Soap vs rest
Soap vs restSoap vs rest
Soap vs rest
 
Restful web services ppt
Restful web services pptRestful web services ppt
Restful web services ppt
 
web service technologies
web service technologiesweb service technologies
web service technologies
 
Webservices
WebservicesWebservices
Webservices
 
Introduction to the Web API
Introduction to the Web APIIntroduction to the Web API
Introduction to the Web API
 
Asp.net.
Asp.net.Asp.net.
Asp.net.
 
MYSQL - PHP Database Connectivity
MYSQL - PHP Database ConnectivityMYSQL - PHP Database Connectivity
MYSQL - PHP Database Connectivity
 
REST API and CRUD
REST API and CRUDREST API and CRUD
REST API and CRUD
 
Scripting languages
Scripting languagesScripting languages
Scripting languages
 
JDBC: java DataBase connectivity
JDBC: java DataBase connectivityJDBC: java DataBase connectivity
JDBC: java DataBase connectivity
 

En vedette

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
 
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)Martin Necasky
 
Introduction to xml
Introduction to xmlIntroduction to xml
Introduction to xmlGtu Booker
 

En vedette (19)

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
 
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
 
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)
 
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
 

Similaire à 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
 

Similaire à 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
 

Dernier

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 

Dernier (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 

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.