SlideShare ist ein Scribd-Unternehmen logo
1 von 26
Web Services (NSWI145)
Lecture 08: WS Addressing, WS Notification
Martin Nečaský, Ph.D.
Faculty of Mathematics and Physics
Charles University in Prague, Czech Republic
Summer 2013
WS-*
 family of complementary Web service
technologies
 in this lecture
 W3C Web Services Addressing Working Group:
• WS-Addressing
Summer 2013
WS-Addressing
 W3C Web Services Addressing Working Group
 completed and closed on 5 Sep 2007
 http://www.w3.org/2002/ws/addr/
 motivation
 standard way to include information about
message sender and receiver, how to return
message response in message itself
Summer 2013
WS-Addressing
 consists of three W3C recommendations
 WS Addressing 1.0 – Core
• endpoint references and message addressing properties
• namespace URI
http://www.w3.org/2005/08/addressing (usual
prefix wsa)
 WS Addressing 1.0 – SOAP Binding
 WS Addressing 1.0 – Metadata
• binding endpoint references to WSDL metadata
• how message addressing properties are described using WSDL
• how WS-Policy can be used to indicate support for WS-Addressing
• namespace URI
http://www.w3.org/2007/05/addressing/metadata
(usual prefix wsam)
Summer 2013
Endpoint References
 informally
 endpoint is a referable entity, process or resource to
which messages can be addressed
 endpoint reference provides information needed to
address endpoint
 can be part of service interface description or created
dynamically (e.g. in SOAP messages, BPEL scripts, ...)
 formally
 endpoint is a collection of abstract properties
 WS-Addressing defines a core set of properties which
can be extended by other specifications
Summer 2013
Endpoint References
Summer 2013
 element wsa:EndpointReference
 defines endpoint reference
 can be used by any other WS standard
• WS-Addressing Core does not specify where element
can be used
• used, e.g., in BPEL 2.0
<wsa:EndpointReference
xmlns:wsa="http://www.w3.org/2005/08/addressing">
</wsa:EndpointReference>
Endpoint References
Summer 2013
 complex type
wsa:EndpointReferenceType
 type of wsa:EndpointReference
 can be used by any other WS standard
• used, e.g., in SOAP headers
 sequence of elements
• wsa:Address
• wsa:ReferenceParameters
• wsa:Metadata
Endpoint References
Summer 2013
 element wsa:Address
 required
 absolute IRI representing endpoint address
 two predefined values
• wsa:anonymous : for endpoints without address
• wsa:none : for endpoints which discard messages
<wsa:EndpointReference>
<wsa:Address>
http://gd/TripleStore/services/TripleStoreWS
</wsa:Address>
</wsa:EndpointReference>
Endpoint References
Summer 2013
 element wsa:ReferenceParameters
 optional
 list of individual parameters associated with endpoint
required to properly interact with endpoint
• they are not ordered
• in case of SOAP as transfer protocol, they determine headers
required by endpoint
<wsa:EndpointReference>
<wsa:ReferenceParameters>
...
</wsa:ReferenceParameters>
</wsa:EndpointReference>
Endpoint References
Summer 2013
 element wsa:Metadata
 optional
 list of meta-properties which describe endpoint
behavior, policies and capabilities
 not necessarily full list of all endpoint metadata
<wsa:EndpointReference>
<wsa:Metadata>
...
</wsa:Metadata>
</wsa:EndpointReference>
Endpoint References
 WS Addressing Metadata introduces specific
meta-properties which specify binding to WSDL
 element wsam:InterfaceName
• WSDL2.0 interface name or WSDL1.1 port type name
 element wsam:ServiceName
• WSDL2.0 service name or WSDL1.1 service name
• attribute EndpointName
– WSDL2.0 endpoint name or WSDL1.1 port name
 it is possible to use WSDL2.0 attribute
wsdlLocation of wsa:Metadata element
• from http://www.w3.org/ns/wsdl-instance namespace
• URI where WSDL description is located
Summer 2013
Endpoint References
Summer 2013
<wsa:EndpointReference>
<wsa:Metadata
xmlns:wsdli="http://www.w3.org/ns/wsdl-instance"
xmlns:tsi=
"http://opendata.cz/Infrastructure/TripleStore/iface#"
wsdli:wsdlLocation=
"http://opendata.cz/Infrastructure/TripleStore/iface#
http://gd/TripleStore/services/TripleStoreWS?wsdl">
<wsam:InterfaceName>
tsi:TripleStoreWSPortType
</wsam:InterfaceName>
<wsam:ServiceName EndpointName="tsi:TripleStoreWS">
tsi:TripleStore
</wsam:ServiceName>
</wsa:Metadata>
</wsa:EndpointReference>
Message Addressing Properties
 part of message
 in case of SOAP = SOAP headers
Summer 2013
Message Addressing Properties
 element wsa:To
 optional
 value is xs:anyURI
 absolute URI representing address of intended message receiver
 element wsa:From
 optional
 value wsa:EndpointReferenceType
 endpoint from which message originated
 element wsa:ReplyTo
 optional
 value wsa:EndpointReferenceType
 endpoint for intended receiver of replies to this message
 element wsa:FaultTo
 optional
 value wsa:EndpointReferenceType
 endpoint for intended receiver of faults related to this message
Summer 2013
Message Addressing Properties
Summer 2013
<soap:Envelope
xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
xmlns:wsa="http://www.w3.org/2005/08/addressing"
xmlns:auc="http://example.org/auction">
<soap:Header>
<wsa:To>http://gd/Entity/services/PublicContract</wsa:To>
<wsa:ReplyTo>
<wsa:Address>
http://example.org/auction/replyConsumer
</wsa:Address>
<wsa:ReferenceParameters>
<auc:number>2011107152334-0322</auc:number>
</wsa:ReferenceParameters>
</wsa:ReplyTo>
</soap:Header>
</soap:Envelope>
Message Addressing Properties
Summer 2013
<soap:Envelope
xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
xmlns:wsa="http://www.w3.org/2005/08/addressing"
xmlns:auc="http://example.org/auction">
<soap:Header>
<auc:number>2011107152334-0322</auc:number>
</soap:Header>
</soap:Envelope>
Message Addressing Properties
 element wsa:Action
 mandatory
 value is xs:anyURI
 absolute URI uniquely identifying semantics implied by
message
 URI should identify input, output or fault message within
WSDL 1.1 port type or WSDL 2.0 interface
• identification assigned to message with
wsaw:Action attribute of wsdl:input,
wsdl:output or wsdl:fault elements
• wsaw:Action introduced in WS Addressing 1.0
Metadata
Summer 2013
Message Addressing Properties
Summer 2013
<soap:Envelope xmlns:soap="..." xmlns:wsa="...">
<soap:Header>
<wsa:Action>
http://opendata.cz/.../iface#opGetPublicContract
</wsa:Action>
</soap:Header>
</soap:Envelope>
<wsdl:definitions xmlns:wsdl="..." xmlns:wsa="..." srv="...">
<wsdl:portType name="PublicContractPortType">
<wsdl:operation name="GetPublicContractRDF">
<wsdl:input message="srv:GetPublicContractRequest"
wsaw:Action="http://opendata.cz/.../iface#opGetPublicContract" />
<wsdl:output message="srv:GetPublicContractResponse"
wsaw:Action="http://opendata.cz/.../iface#opGetPublicContractResp" />
</wsdl:operation>
</wsdl:portType>
</wsdl:definitions>
Message Addressing Properties
 element wsa:MessageID
 optional
 value is xs:anyURI
 absolute IRI uniquely identifying message
 uniqueness is responsibility of sender, receiver’s behavior in
case of duplicated IDs is not specified
 element wsa:RelatesTo
 optional
 value is xs:anyURI
 ID of a message related to this message
 relationship type specified by attribute RelationshipType
• default value
http://www.w3.org/2005/08/addressing/reply
Summer 2013
Message Addressing Properties
Summer 2013
<soap:Envelope xmlns:soap="..." xmlns:wsa="...">
<soap:Header>
<wsa:Action>
http://opendata.cz/.../iface#opGetPublicContract
</wsa:Action>
<wsa:MessageID>
http://example.org/contract_bidder/BID2011107152334-0322
</wsa:MessageID>
</soap:Header>
</soap:Envelope>
<soap:Envelope xmlns:soap="..." xmlns:wsa="...">
<soap:Header>
<wsa:Action>
http://opendata.cz/.../iface#opGetPublicContractResp
</wsa:Action>
<wsa:RelatesTo>
http://example.org/contract_bidder/BID2011107152334-0322
</wsa:RelatesTo>
</soap:Header>
</soap:Envelope>
More on Extending WSDL
 WSDL 2.0 endpoint or WSDL 1.1 port may be
extended with WS addressing endpoint reference
<wsdl:port name="PublicContractWS" binding="srv:PublicContractSOAPBinding">
<soap:address
location="http://gd/EntityServices/services/PublicContractWS" />
<wsa:EndpointReference xmlns:wsa="http://www.w3.org/2005/08/addressing">
<wsa:Address>
http://gd/EntityServices/services/PublicContractWS
</wsa:Address>
</wsa:EndpointReference>
</wsdl:port>
Summer 2013
More on Extending WSDL
wsdl11:port
soap:address
wsa:EndpointReference
wsa:Address
wsa:ReferenceParameters
soap:Header
wsa:To
ns1:param1
ns2:param2
ns1:param1
ns2:param2
Summer 2013
More on Extending WSDL
 wsa:Action in incoming message associated with
input, output or fault within WSDL description
 two association mechanisms
 explicit association
• action is defined explicitly for input, output or fault messages with
wsaw:Action attribute (we have already seen sample SOAP
message and WSDL description on previous slides)
• if wsaw:Action attribute is missing
– if soap:operation/@soapAction attribute with a non-empty values is
present then its value is action for input message
– if soap:operation/@soapAction attribute is missing or empty value
then action for input message is assigned implicitly
 implicit association is defined for WSDL 1.1 and WSDL 2.0
Summer 2013
wsdl11:binding
More on Extending WSDL
wsdl11:portType
wsdl11:operation
soap:Header
wsa:Action
wsdl11:input
wsaw:Action
1
2
wsdl11:operation
soap:operation
@soapAction
Summer 2013
More on Extending WSDL
 implicit association for WSDL 1.1
 so called Default Action Pattern for WSDL 1.1
 pattern for input and output messages
[target namespace][delimiter][port type name]
[delimiter][input|output name]
 pattern for fault messages
[target namespace][delimiter][port type name]
[delimiter][operation name][delimiter]Fault
[delimiter][fault name]
 [delimiter]is : (for URN target namespace) or /
Summer 2013
More on Extending WSDL
<wsdl:portType name="PublicContractPortType">
<wsdl:operation name="GetPublicContract">
<wsdl:input message="srv:GetPublicContractRequest"
name="GetPublicContract" />
<wsdl:output message="srv:GetPublicContractResponse"
name="PublicContract" />
</wsdl:operation>
</wsdl:portType>
[target namespace][delimiter][port type name]
[delimiter][input|output name]
http://opendata.cz/EntityServices/PublicContract/iface/
PublicContractPortType/GetPublicContract
http://opendata.cz/EntityServices/PublicContract/iface/
PublicContractPortType/PublicContract
Summer 2013

Weitere ähnliche Inhalte

Was ist angesagt?

Kernel security of Systems
Kernel security of SystemsKernel security of Systems
Kernel security of SystemsJamal Jamali
 
Distributed Systems Introduction and Importance
Distributed Systems Introduction and Importance Distributed Systems Introduction and Importance
Distributed Systems Introduction and Importance SHIKHA GAUTAM
 
Introduction to distributed file systems
Introduction to distributed file systemsIntroduction to distributed file systems
Introduction to distributed file systemsViet-Trung TRAN
 
Market oriented Cloud Computing
Market oriented Cloud ComputingMarket oriented Cloud Computing
Market oriented Cloud ComputingJithin Parakka
 
Troubleshooting complex layer 2 issues ppt 16 bsit098
Troubleshooting complex  layer 2 issues ppt 16 bsit098Troubleshooting complex  layer 2 issues ppt 16 bsit098
Troubleshooting complex layer 2 issues ppt 16 bsit098Quratulain baloch
 
What is Server? (Web Server vs Application Server)
What is Server? (Web Server vs Application Server)What is Server? (Web Server vs Application Server)
What is Server? (Web Server vs Application Server)Amit Nirala
 
Distributed System-Multicast & Indirect communication
Distributed System-Multicast & Indirect communicationDistributed System-Multicast & Indirect communication
Distributed System-Multicast & Indirect communicationMNM Jain Engineering College
 
Chapter 4 a interprocess communication
Chapter 4 a interprocess communicationChapter 4 a interprocess communication
Chapter 4 a interprocess communicationAbDul ThaYyal
 
Client-Server Computing
Client-Server ComputingClient-Server Computing
Client-Server ComputingCloudbells.com
 
Grid protocol architecture
Grid protocol architectureGrid protocol architecture
Grid protocol architecturePooja Dixit
 
Query decomposition in data base
Query decomposition in data baseQuery decomposition in data base
Query decomposition in data baseSalman Memon
 
OSI and TCPIP Model
OSI and TCPIP ModelOSI and TCPIP Model
OSI and TCPIP ModelTapan Khilar
 
Service Oriented Architecture (SOA)
Service Oriented Architecture (SOA)Service Oriented Architecture (SOA)
Service Oriented Architecture (SOA)Biniam Asnake
 
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
 
Optimistic concurrency control in Distributed Systems
Optimistic concurrency control in Distributed SystemsOptimistic concurrency control in Distributed Systems
Optimistic concurrency control in Distributed Systemsmridul mishra
 

Was ist angesagt? (20)

Kernel security of Systems
Kernel security of SystemsKernel security of Systems
Kernel security of Systems
 
Distributed Systems Introduction and Importance
Distributed Systems Introduction and Importance Distributed Systems Introduction and Importance
Distributed Systems Introduction and Importance
 
Introduction to distributed file systems
Introduction to distributed file systemsIntroduction to distributed file systems
Introduction to distributed file systems
 
Market oriented Cloud Computing
Market oriented Cloud ComputingMarket oriented Cloud Computing
Market oriented Cloud Computing
 
Transport layer
Transport layer Transport layer
Transport layer
 
Troubleshooting complex layer 2 issues ppt 16 bsit098
Troubleshooting complex  layer 2 issues ppt 16 bsit098Troubleshooting complex  layer 2 issues ppt 16 bsit098
Troubleshooting complex layer 2 issues ppt 16 bsit098
 
What is Server? (Web Server vs Application Server)
What is Server? (Web Server vs Application Server)What is Server? (Web Server vs Application Server)
What is Server? (Web Server vs Application Server)
 
Distributed System-Multicast & Indirect communication
Distributed System-Multicast & Indirect communicationDistributed System-Multicast & Indirect communication
Distributed System-Multicast & Indirect communication
 
Chapter 4 a interprocess communication
Chapter 4 a interprocess communicationChapter 4 a interprocess communication
Chapter 4 a interprocess communication
 
AD & LDAP
AD & LDAPAD & LDAP
AD & LDAP
 
Cloud computing What Why How
Cloud computing What Why HowCloud computing What Why How
Cloud computing What Why How
 
Client-Server Computing
Client-Server ComputingClient-Server Computing
Client-Server Computing
 
Grid protocol architecture
Grid protocol architectureGrid protocol architecture
Grid protocol architecture
 
Cs6703 grid and cloud computing unit 4
Cs6703 grid and cloud computing unit 4Cs6703 grid and cloud computing unit 4
Cs6703 grid and cloud computing unit 4
 
Query decomposition in data base
Query decomposition in data baseQuery decomposition in data base
Query decomposition in data base
 
OSI and TCPIP Model
OSI and TCPIP ModelOSI and TCPIP Model
OSI and TCPIP Model
 
Service Oriented Architecture (SOA)
Service Oriented Architecture (SOA)Service Oriented Architecture (SOA)
Service Oriented Architecture (SOA)
 
Unit 4
Unit 4Unit 4
Unit 4
 
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
 
Optimistic concurrency control in Distributed Systems
Optimistic concurrency control in Distributed SystemsOptimistic concurrency control in Distributed Systems
Optimistic concurrency control in Distributed Systems
 

Andere mochten auch

Web Services - Business Process Execution Language
Web Services - Business Process Execution LanguageWeb Services - Business Process Execution Language
Web Services - Business Process Execution LanguageMartin Necasky
 
Web Services - SOAP (part 2)
Web Services - SOAP (part 2)Web Services - SOAP (part 2)
Web Services - SOAP (part 2)Martin Necasky
 
Soa Primer
Soa PrimerSoa Primer
Soa Primervavasthi
 
[Android] Web services
[Android] Web services[Android] Web services
[Android] Web servicesNikmesoft Ltd
 
Web Services Part 1
Web Services Part 1Web Services Part 1
Web Services Part 1patinijava
 
Web services - A Practical Approach
Web services - A Practical ApproachWeb services - A Practical Approach
Web services - A Practical ApproachMadhaiyan Muthu
 
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
 

Andere mochten auch (8)

Web Services - Business Process Execution Language
Web Services - Business Process Execution LanguageWeb Services - Business Process Execution Language
Web Services - Business Process Execution Language
 
Web Services - SOAP (part 2)
Web Services - SOAP (part 2)Web Services - SOAP (part 2)
Web Services - SOAP (part 2)
 
Soa Primer
Soa PrimerSoa Primer
Soa Primer
 
[Android] Web services
[Android] Web services[Android] Web services
[Android] Web services
 
Web Services Part 1
Web Services Part 1Web Services Part 1
Web Services Part 1
 
Web services - A Practical Approach
Web services - A Practical ApproachWeb services - A Practical Approach
Web services - A Practical Approach
 
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)
 
Web service architecture
Web service architectureWeb service architecture
Web service architecture
 

Ähnlich wie WS-Addressing

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 services101
Web services101Web services101
Web services101chaos41
 
Web Services Discovery for Devices
Web Services Discovery for DevicesWeb Services Discovery for Devices
Web Services Discovery for DevicesJorgen Thelin
 
Lecture 16 - Web Services
Lecture 16 - Web ServicesLecture 16 - Web Services
Lecture 16 - Web Servicesphanleson
 
SWOP project and META software
SWOP project and META softwareSWOP project and META software
SWOP project and META softwareMichele Filannino
 
Svcc2009 Async Ws
Svcc2009 Async WsSvcc2009 Async Ws
Svcc2009 Async WsManoj Kumar
 
Who am I? Who are you? Who is anybody?
Who am I? Who are you? Who is anybody?Who am I? Who are you? Who is anybody?
Who am I? Who are you? Who is anybody?Paul Downey
 
Android chapter16-web-services
Android chapter16-web-servicesAndroid chapter16-web-services
Android chapter16-web-servicesAravindharamanan S
 
Interoperable Web Services with JAX-WS and WSIT
Interoperable Web Services with JAX-WS and WSITInteroperable Web Services with JAX-WS and WSIT
Interoperable Web Services with JAX-WS and WSITCarol McDonald
 
REST vs WS-*: Myths Facts and Lies
REST vs WS-*: Myths Facts and LiesREST vs WS-*: Myths Facts and Lies
REST vs WS-*: Myths Facts and LiesPaul Fremantle
 
Semantic Web Services: State of the Art
Semantic Web Services: State of the ArtSemantic Web Services: State of the Art
Semantic Web Services: State of the ArtMarkus Lanthaler
 
Web-Services!.pptx
Web-Services!.pptxWeb-Services!.pptx
Web-Services!.pptxssuserae0316
 
Spring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSpring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSam Brannen
 
OUGN 2016: Experiences with REST support on OSB/SOA Suite
OUGN 2016: Experiences with REST support on OSB/SOA SuiteOUGN 2016: Experiences with REST support on OSB/SOA Suite
OUGN 2016: Experiences with REST support on OSB/SOA SuiteJon Petter Hjulstad
 

Ähnlich wie WS-Addressing (20)

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 overview
Web services overviewWeb services overview
Web services overview
 
Web services101
Web services101Web services101
Web services101
 
Web Services Discovery for Devices
Web Services Discovery for DevicesWeb Services Discovery for Devices
Web Services Discovery for Devices
 
Lecture 16 - Web Services
Lecture 16 - Web ServicesLecture 16 - Web Services
Lecture 16 - Web Services
 
SCDJWS 5. JAX-WS
SCDJWS 5. JAX-WSSCDJWS 5. JAX-WS
SCDJWS 5. JAX-WS
 
SWOP project and META software
SWOP project and META softwareSWOP project and META software
SWOP project and META software
 
SOAP-based Web Services
SOAP-based Web ServicesSOAP-based Web Services
SOAP-based Web Services
 
WS-* with WCF
WS-* with WCFWS-* with WCF
WS-* with WCF
 
Web service introduction
Web service introductionWeb service introduction
Web service introduction
 
Svcc2009 Async Ws
Svcc2009 Async WsSvcc2009 Async Ws
Svcc2009 Async Ws
 
Who am I? Who are you? Who is anybody?
Who am I? Who are you? Who is anybody?Who am I? Who are you? Who is anybody?
Who am I? Who are you? Who is anybody?
 
Android chapter16-web-services
Android chapter16-web-servicesAndroid chapter16-web-services
Android chapter16-web-services
 
Interoperable Web Services with JAX-WS and WSIT
Interoperable Web Services with JAX-WS and WSITInteroperable Web Services with JAX-WS and WSIT
Interoperable Web Services with JAX-WS and WSIT
 
REST vs WS-*: Myths Facts and Lies
REST vs WS-*: Myths Facts and LiesREST vs WS-*: Myths Facts and Lies
REST vs WS-*: Myths Facts and Lies
 
Ws rest
Ws restWs rest
Ws rest
 
Semantic Web Services: State of the Art
Semantic Web Services: State of the ArtSemantic Web Services: State of the Art
Semantic Web Services: State of the Art
 
Web-Services!.pptx
Web-Services!.pptxWeb-Services!.pptx
Web-Services!.pptx
 
Spring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSpring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. REST
 
OUGN 2016: Experiences with REST support on OSB/SOA Suite
OUGN 2016: Experiences with REST support on OSB/SOA SuiteOUGN 2016: Experiences with REST support on OSB/SOA Suite
OUGN 2016: Experiences with REST support on OSB/SOA Suite
 

Mehr von Martin Necasky

Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016Martin Necasky
 
Tutoriál : Otevřená a propojitelná data veřejné správy
Tutoriál : Otevřená a propojitelná data veřejné správyTutoriál : Otevřená a propojitelná data veřejné správy
Tutoriál : Otevřená a propojitelná data veřejné správyMartin Necasky
 
Linked Data for Czech Legislation - 2nd year of our project
Linked Data for Czech Legislation - 2nd year of our projectLinked Data for Czech Legislation - 2nd year of our project
Linked Data for Czech Legislation - 2nd year of our projectMartin Necasky
 
Linked Open Data for Public Contracts
Linked Open Data for Public ContractsLinked Open Data for Public Contracts
Linked Open Data for Public ContractsMartin Necasky
 
Linked Data for Czech Legislation
Linked Data for Czech LegislationLinked Data for Czech Legislation
Linked Data for Czech LegislationMartin Necasky
 
Otevrena data v CR - aktualni stav (brezen 2013)
Otevrena data v CR - aktualni stav (brezen 2013)Otevrena data v CR - aktualni stav (brezen 2013)
Otevrena data v CR - aktualni stav (brezen 2013)Martin Necasky
 
Otevrene problemy architektury elektronickeho zdravotnictvi
Otevrene problemy architektury elektronickeho zdravotnictviOtevrene problemy architektury elektronickeho zdravotnictvi
Otevrene problemy architektury elektronickeho zdravotnictviMartin Necasky
 
Vysledek souteze o navrh hospodarneho a funkcniho elektronickeho zdravotnictvi
Vysledek souteze o navrh hospodarneho a funkcniho elektronickeho zdravotnictviVysledek souteze o navrh hospodarneho a funkcniho elektronickeho zdravotnictvi
Vysledek souteze o navrh hospodarneho a funkcniho elektronickeho zdravotnictviMartin Necasky
 
Web Services - Introduction
Web Services - IntroductionWeb Services - Introduction
Web Services - IntroductionMartin Necasky
 
Techniky a nástroje pro propojená data (Linked Data)
Techniky a nástroje pro propojená data (Linked Data)Techniky a nástroje pro propojená data (Linked Data)
Techniky a nástroje pro propojená data (Linked Data)Martin Necasky
 
Linked Data pro Evropský sociální fond
Linked Data pro Evropský sociální fondLinked Data pro Evropský sociální fond
Linked Data pro Evropský sociální fondMartin Necasky
 

Mehr von Martin Necasky (13)

Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016
 
Tutoriál : Otevřená a propojitelná data veřejné správy
Tutoriál : Otevřená a propojitelná data veřejné správyTutoriál : Otevřená a propojitelná data veřejné správy
Tutoriál : Otevřená a propojitelná data veřejné správy
 
Linked Data for Czech Legislation - 2nd year of our project
Linked Data for Czech Legislation - 2nd year of our projectLinked Data for Czech Legislation - 2nd year of our project
Linked Data for Czech Legislation - 2nd year of our project
 
Linked Open Data for Public Contracts
Linked Open Data for Public ContractsLinked Open Data for Public Contracts
Linked Open Data for Public Contracts
 
Linked Data for Czech Legislation
Linked Data for Czech LegislationLinked Data for Czech Legislation
Linked Data for Czech Legislation
 
RESTful Web Services
RESTful Web ServicesRESTful Web Services
RESTful Web Services
 
Web Services - WSDL
Web Services - WSDLWeb Services - WSDL
Web Services - WSDL
 
Otevrena data v CR - aktualni stav (brezen 2013)
Otevrena data v CR - aktualni stav (brezen 2013)Otevrena data v CR - aktualni stav (brezen 2013)
Otevrena data v CR - aktualni stav (brezen 2013)
 
Otevrene problemy architektury elektronickeho zdravotnictvi
Otevrene problemy architektury elektronickeho zdravotnictviOtevrene problemy architektury elektronickeho zdravotnictvi
Otevrene problemy architektury elektronickeho zdravotnictvi
 
Vysledek souteze o navrh hospodarneho a funkcniho elektronickeho zdravotnictvi
Vysledek souteze o navrh hospodarneho a funkcniho elektronickeho zdravotnictviVysledek souteze o navrh hospodarneho a funkcniho elektronickeho zdravotnictvi
Vysledek souteze o navrh hospodarneho a funkcniho elektronickeho zdravotnictvi
 
Web Services - Introduction
Web Services - IntroductionWeb Services - Introduction
Web Services - Introduction
 
Techniky a nástroje pro propojená data (Linked Data)
Techniky a nástroje pro propojená data (Linked Data)Techniky a nástroje pro propojená data (Linked Data)
Techniky a nástroje pro propojená data (Linked Data)
 
Linked Data pro Evropský sociální fond
Linked Data pro Evropský sociální fondLinked Data pro Evropský sociální fond
Linked Data pro Evropský sociální fond
 

Kürzlich hochgeladen

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
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusZilliz
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 

Kürzlich hochgeladen (20)

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...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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)
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 

WS-Addressing

  • 1. Web Services (NSWI145) Lecture 08: WS Addressing, WS Notification Martin Nečaský, Ph.D. Faculty of Mathematics and Physics Charles University in Prague, Czech Republic Summer 2013
  • 2. WS-*  family of complementary Web service technologies  in this lecture  W3C Web Services Addressing Working Group: • WS-Addressing Summer 2013
  • 3. WS-Addressing  W3C Web Services Addressing Working Group  completed and closed on 5 Sep 2007  http://www.w3.org/2002/ws/addr/  motivation  standard way to include information about message sender and receiver, how to return message response in message itself Summer 2013
  • 4. WS-Addressing  consists of three W3C recommendations  WS Addressing 1.0 – Core • endpoint references and message addressing properties • namespace URI http://www.w3.org/2005/08/addressing (usual prefix wsa)  WS Addressing 1.0 – SOAP Binding  WS Addressing 1.0 – Metadata • binding endpoint references to WSDL metadata • how message addressing properties are described using WSDL • how WS-Policy can be used to indicate support for WS-Addressing • namespace URI http://www.w3.org/2007/05/addressing/metadata (usual prefix wsam) Summer 2013
  • 5. Endpoint References  informally  endpoint is a referable entity, process or resource to which messages can be addressed  endpoint reference provides information needed to address endpoint  can be part of service interface description or created dynamically (e.g. in SOAP messages, BPEL scripts, ...)  formally  endpoint is a collection of abstract properties  WS-Addressing defines a core set of properties which can be extended by other specifications Summer 2013
  • 6. Endpoint References Summer 2013  element wsa:EndpointReference  defines endpoint reference  can be used by any other WS standard • WS-Addressing Core does not specify where element can be used • used, e.g., in BPEL 2.0 <wsa:EndpointReference xmlns:wsa="http://www.w3.org/2005/08/addressing"> </wsa:EndpointReference>
  • 7. Endpoint References Summer 2013  complex type wsa:EndpointReferenceType  type of wsa:EndpointReference  can be used by any other WS standard • used, e.g., in SOAP headers  sequence of elements • wsa:Address • wsa:ReferenceParameters • wsa:Metadata
  • 8. Endpoint References Summer 2013  element wsa:Address  required  absolute IRI representing endpoint address  two predefined values • wsa:anonymous : for endpoints without address • wsa:none : for endpoints which discard messages <wsa:EndpointReference> <wsa:Address> http://gd/TripleStore/services/TripleStoreWS </wsa:Address> </wsa:EndpointReference>
  • 9. Endpoint References Summer 2013  element wsa:ReferenceParameters  optional  list of individual parameters associated with endpoint required to properly interact with endpoint • they are not ordered • in case of SOAP as transfer protocol, they determine headers required by endpoint <wsa:EndpointReference> <wsa:ReferenceParameters> ... </wsa:ReferenceParameters> </wsa:EndpointReference>
  • 10. Endpoint References Summer 2013  element wsa:Metadata  optional  list of meta-properties which describe endpoint behavior, policies and capabilities  not necessarily full list of all endpoint metadata <wsa:EndpointReference> <wsa:Metadata> ... </wsa:Metadata> </wsa:EndpointReference>
  • 11. Endpoint References  WS Addressing Metadata introduces specific meta-properties which specify binding to WSDL  element wsam:InterfaceName • WSDL2.0 interface name or WSDL1.1 port type name  element wsam:ServiceName • WSDL2.0 service name or WSDL1.1 service name • attribute EndpointName – WSDL2.0 endpoint name or WSDL1.1 port name  it is possible to use WSDL2.0 attribute wsdlLocation of wsa:Metadata element • from http://www.w3.org/ns/wsdl-instance namespace • URI where WSDL description is located Summer 2013
  • 13. Message Addressing Properties  part of message  in case of SOAP = SOAP headers Summer 2013
  • 14. Message Addressing Properties  element wsa:To  optional  value is xs:anyURI  absolute URI representing address of intended message receiver  element wsa:From  optional  value wsa:EndpointReferenceType  endpoint from which message originated  element wsa:ReplyTo  optional  value wsa:EndpointReferenceType  endpoint for intended receiver of replies to this message  element wsa:FaultTo  optional  value wsa:EndpointReferenceType  endpoint for intended receiver of faults related to this message Summer 2013
  • 15. Message Addressing Properties Summer 2013 <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:auc="http://example.org/auction"> <soap:Header> <wsa:To>http://gd/Entity/services/PublicContract</wsa:To> <wsa:ReplyTo> <wsa:Address> http://example.org/auction/replyConsumer </wsa:Address> <wsa:ReferenceParameters> <auc:number>2011107152334-0322</auc:number> </wsa:ReferenceParameters> </wsa:ReplyTo> </soap:Header> </soap:Envelope>
  • 16. Message Addressing Properties Summer 2013 <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:auc="http://example.org/auction"> <soap:Header> <auc:number>2011107152334-0322</auc:number> </soap:Header> </soap:Envelope>
  • 17. Message Addressing Properties  element wsa:Action  mandatory  value is xs:anyURI  absolute URI uniquely identifying semantics implied by message  URI should identify input, output or fault message within WSDL 1.1 port type or WSDL 2.0 interface • identification assigned to message with wsaw:Action attribute of wsdl:input, wsdl:output or wsdl:fault elements • wsaw:Action introduced in WS Addressing 1.0 Metadata Summer 2013
  • 18. Message Addressing Properties Summer 2013 <soap:Envelope xmlns:soap="..." xmlns:wsa="..."> <soap:Header> <wsa:Action> http://opendata.cz/.../iface#opGetPublicContract </wsa:Action> </soap:Header> </soap:Envelope> <wsdl:definitions xmlns:wsdl="..." xmlns:wsa="..." srv="..."> <wsdl:portType name="PublicContractPortType"> <wsdl:operation name="GetPublicContractRDF"> <wsdl:input message="srv:GetPublicContractRequest" wsaw:Action="http://opendata.cz/.../iface#opGetPublicContract" /> <wsdl:output message="srv:GetPublicContractResponse" wsaw:Action="http://opendata.cz/.../iface#opGetPublicContractResp" /> </wsdl:operation> </wsdl:portType> </wsdl:definitions>
  • 19. Message Addressing Properties  element wsa:MessageID  optional  value is xs:anyURI  absolute IRI uniquely identifying message  uniqueness is responsibility of sender, receiver’s behavior in case of duplicated IDs is not specified  element wsa:RelatesTo  optional  value is xs:anyURI  ID of a message related to this message  relationship type specified by attribute RelationshipType • default value http://www.w3.org/2005/08/addressing/reply Summer 2013
  • 20. Message Addressing Properties Summer 2013 <soap:Envelope xmlns:soap="..." xmlns:wsa="..."> <soap:Header> <wsa:Action> http://opendata.cz/.../iface#opGetPublicContract </wsa:Action> <wsa:MessageID> http://example.org/contract_bidder/BID2011107152334-0322 </wsa:MessageID> </soap:Header> </soap:Envelope> <soap:Envelope xmlns:soap="..." xmlns:wsa="..."> <soap:Header> <wsa:Action> http://opendata.cz/.../iface#opGetPublicContractResp </wsa:Action> <wsa:RelatesTo> http://example.org/contract_bidder/BID2011107152334-0322 </wsa:RelatesTo> </soap:Header> </soap:Envelope>
  • 21. More on Extending WSDL  WSDL 2.0 endpoint or WSDL 1.1 port may be extended with WS addressing endpoint reference <wsdl:port name="PublicContractWS" binding="srv:PublicContractSOAPBinding"> <soap:address location="http://gd/EntityServices/services/PublicContractWS" /> <wsa:EndpointReference xmlns:wsa="http://www.w3.org/2005/08/addressing"> <wsa:Address> http://gd/EntityServices/services/PublicContractWS </wsa:Address> </wsa:EndpointReference> </wsdl:port> Summer 2013
  • 22. More on Extending WSDL wsdl11:port soap:address wsa:EndpointReference wsa:Address wsa:ReferenceParameters soap:Header wsa:To ns1:param1 ns2:param2 ns1:param1 ns2:param2 Summer 2013
  • 23. More on Extending WSDL  wsa:Action in incoming message associated with input, output or fault within WSDL description  two association mechanisms  explicit association • action is defined explicitly for input, output or fault messages with wsaw:Action attribute (we have already seen sample SOAP message and WSDL description on previous slides) • if wsaw:Action attribute is missing – if soap:operation/@soapAction attribute with a non-empty values is present then its value is action for input message – if soap:operation/@soapAction attribute is missing or empty value then action for input message is assigned implicitly  implicit association is defined for WSDL 1.1 and WSDL 2.0 Summer 2013
  • 24. wsdl11:binding More on Extending WSDL wsdl11:portType wsdl11:operation soap:Header wsa:Action wsdl11:input wsaw:Action 1 2 wsdl11:operation soap:operation @soapAction Summer 2013
  • 25. More on Extending WSDL  implicit association for WSDL 1.1  so called Default Action Pattern for WSDL 1.1  pattern for input and output messages [target namespace][delimiter][port type name] [delimiter][input|output name]  pattern for fault messages [target namespace][delimiter][port type name] [delimiter][operation name][delimiter]Fault [delimiter][fault name]  [delimiter]is : (for URN target namespace) or / Summer 2013
  • 26. More on Extending WSDL <wsdl:portType name="PublicContractPortType"> <wsdl:operation name="GetPublicContract"> <wsdl:input message="srv:GetPublicContractRequest" name="GetPublicContract" /> <wsdl:output message="srv:GetPublicContractResponse" name="PublicContract" /> </wsdl:operation> </wsdl:portType> [target namespace][delimiter][port type name] [delimiter][input|output name] http://opendata.cz/EntityServices/PublicContract/iface/ PublicContractPortType/GetPublicContract http://opendata.cz/EntityServices/PublicContract/iface/ PublicContractPortType/PublicContract Summer 2013