Copyright © 2004-2008 CA, International Business Machines Corporation, Microsoft Corporation, Inc., SAP AG, Sun Microsystems, Inc., and Software AG. All rights reserved. This document is available under the W3C Document License. See the W3C Intellectual Rights Notice and Legal Disclaimers for additional information.
This specification defines how metadata associated with a Web service endpoint can be represented as [WS-Transfer] resources, how metadata can be embedded in [WS-Addressing 2004, WS-Addressing 1.0 Core] endpoint references, and how metadata could be retrieved from a Web service endpoint.
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications can be found in the W3C technical reports index at http://www.w3.org/TR/.
This WS-MetadataExchange Specification is a public draft release and is provided for review and evaluation only. The Authors hope to solicit your contributions and suggestions in the near future. The Authors make no warrantees or representations regarding the specifications in any manner whatsoever.
By publishing this document, W3C acknowledges that the Submitting Members have made a formal Submission request to W3C for discussion. Publication of this document by W3C indicates no endorsement of its content by W3C, nor that W3C has, is, or will be allocating any resources to the issues addressed by it. This document is not the product of a chartered W3C group, but is published as potential input to the W3C Process. A W3C Team Comment has been published in conjunction with this Member Submission. Publication of acknowledged Member Submissions at the W3C site is one of the benefits of W3C Membership. Please consult the requirements associated with Member Submissions of section 3.3 of the W3C Patent Policy. Please consult the complete list of acknowledged W3C Member Submissions.
The Web services specifications (WS-*) are designed to be composed with each other to provide a rich set of tools for the Web services environment. This specification specifically relies on other Web services specifications to provide secure, reliable, and/or transacted message delivery and to express Web service metadata.
Web services use metadata to describe what other endpoints need to know to interact with them. Specifically, WS-Policy [WS-Policy] describes the capabilities, requirements, and general characteristics of Web services; WSDL [WSDL 1.1] describes abstract message operations, concrete network protocols, and endpoint addresses used by Web services; XML Schema [XML Schema Part 1, Part 2] describes the structure and contents of XML-based messages received by and sent by Web services.
To bootstrap communication with Web services this specification defines how metadata can be treated as [WS-Transfer] resources for retrieval purposes, how metadata can be embedded in Web service endpoint references, and how Web service endpoints can optionally support a request-response interaction for the retrieval of metadata. When the type of metadata sought is clearly known, e.g., [WS-Policy], a requester may indicate that only that type should be returned; where additional types of metadata are being used, or are expected, or when a requester needs to retrieve all of the metadata relevant to subsequent interactions with an endpoint, a requester may indicate that all available metadata, regardless of their types, are expected.
The mechanisms defined herein are intended for the retrieval of metadata (i.e., Web service description information) only. They are not intended to provide a general purpose query or retrieval mechanism for other types of data associated with a Web service, such as state data, properties and attribute values, etc.
This specification intends to meet the following requirements:
Table 1 illustrates a sample [WS-Transfer] Get request for a resource's representation.
Table 1: Sample Get request message.
(01) <s11:Envelope (02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/' (03) xmlns:wsa10='http://www.w3.org/2005/08/addressing'> (04) <s11:Header> (05) <wsa10:Action> (06) http://schemas.xmlsoap.org/ws/2004/09/transfer/Get (07) </wsa10:Action> (08) <wsa10:To>http://services.example.org/stockquote/metadata</wsa10:To> (09) <wsa10:ReplyTo> (10) <wsa10:Address>http://client.example.org</wsa10:Address> (11) </wsa10:ReplyTo> (12) <wsa10:MessageID> (13) urn:uuid:1cec121a-82fe-41da-87e1-3b23f254f128 (14) </wsa10:MessageID> (15) </s11:Header> (16) <s11:Body /> (17) </s11:Envelope>
The sample request message of Table 1 is a [WS-Transfer] request for the retrieval of a resource's representation. In this case, the requested representation is the WS-Metadata Exchange Metadata element about a Web service endpoint. The fact that the resource's representation is a mex:Metadata element may be known to the requestor but is not explicitly encoded in the request message
Table 2 illustrates a sample response to the request of Table 1.
Table 2: Sample response message with metadata.
(01) <s11:Envelope (02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/' (03) xmlns:wsa10='http://www.w3.org/2005/08/addressing' (04) xmlns:mex='http://schemas.xmlsoap.org/ws/2004/09/mex' (05) xmlns:wsp='http://schemas.xmlsoap.org/ws/2004/09/policy' (06) xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'> (07) <s11:Header> (08) <wsa10:Action> (09) http://schemas.xmlsoap.org/ws/2004/09/transfer/GetResponse (10) </wsa10:Action> (11) <wsa10:To>http://client.example.org</wsa10:To> (12) <wsa10:RelatesTo> (13) urn:uuid:1cec121a-82fe-41da-87e1-3b23f254f128 (14) </wsa10:RelatesTo> (15) </s11:Header> (16) <s11:Body> (17) <mex:Metadata> (18) <mex:MetadataSection Dialect='http://schemas.xmlsoap.org/wsdl/'> (19) <wsdl:definitions (20) name='StockQuote' (21) targetNamespace='http://services.example.org/stockquote' (22) xmlns:tns='http://services.example.org/stockquote' (23) xmlns:msgs='http://services.example.org/stockquote/schemas' (24) xmlns:wsoap='http://schemas.xmlsoap.org/wsdl/soap/' (25) xmlns:xs='http://www.w3.org/2001/XMLSchema'> (26) <wsdl:import (27) namespace='http://services.example.org/stockquote' (28) location='http://services.example.org/stockquote/schemas' /> (29) <wsdl:portType name='StockQuotePortType'> (30) <wsdl:operation name='GetLastTradePrice'> (31) <wsdl:input message='msgs:GetLastTradePriceInput' (32) name='GetLastTradePriceInput'/> (33) <wsdl:output message='msgs:GetLastTradePriceOutput' (34) name='GetLastTradePriceOutput'/> (35) </wsdl:operation> (36) </wsdl:portType> (37) <wsdl:binding name='StockQuoteBinding' (38) type='tns:StockQuotePortType'> (39) <wsp:PolicyReference (40) URI='http://services.example.org/stockquote/policy' /> (41) <wsoap:binding style='document' (42) transport='http://schemas.xmlsoap.org/soap/http'/> (43) <wsdl:operation name='GetLastTradePrice'> (44) <wsoap:operation soapAction='http://services.example.org/stockquote/GetLastTradePrice' /> (45) <wsdl:input name='GetLastTradePriceInput'> (46) <wsoap:body use='literal'/> (47) </wsdl:input> (48) <wsdl:output name='GetLastTradePriceOutput'> (49) <wsoap:body use='literal'/> (50) </wsdl:output> (51) </wsdl:operation> (52) </wsdl:binding> (53) <wsdl:service name='StockQuoteService'> (54) <wsdl:port name='StockQuotePort' (55) binding='tns:StockQuoteBinding' > (56) <wsoap:address (57) location='http://services.example.org/stockquote' /> (58) </wsdl:port> (59) </wsdl:service> (60) </wsdl:definitions> (61) </mex:MetadataSection> (62) <mex:MetadataSection (63) Dialect='http://www.w3.org/2001/XMLSchema' (64) Identifier='http://services.example.org/stockquote/schemas'> (65) <mex:Location> (66) http://services.example.org/stockquote/schemas (67) </mex:Location> (68) </mex:MetadataSection> (69) <mex:MetadataSection (70) Dialect='http://schemas.xmlsoap.org/ws/2004/09/policy' (71) Identifier='http://services.example.org/stockquote/policy'> (72) <mex:MetadataReference> (73) <wsa10:Address> (74) http://services.example.org/stockquote/policy (75) </wsa10:Address> (76) </mex:MetadataReference> (77) </mex:MetadataSection> (78) </mex:Metadata> (79) </s11:Body> (80) </s11:Envelope>
The message of Table 2 is a [WS-Transfer] response message to the request of Table 1. The content of the [Body] (lines 16-79) is a mex:Metadata element with metadata about the Web service endpoint (lines 17-78). The mex:Metadata contains three Metadata Sections. The first Metadata Section (lines 18-61) contains the WSDL [WSDL] of the Web service endpoint. The second Metadata Section (lines 62-68) contains the location of the XML Schemas [XML Schema Part 1, Part 2] used by the WSDL document. The schemas can be retrieved through an HTTP GET request at the identified URL (lines 65-67). The third Metadata Section (lines 69-77) contains the WS-Addressing [WS-Addressing 1.0 Core] endpoint reference (lines 72-75) of a WS-Transfer [WS-Transfer] resource the representation of which is a WS-Policy [WS-Policy] document as indicated by the Dialect attribute (line 70). The WS-Policy document is the same as the one indicated in the WSDL document (lines 39-40).
While the WS-Policy of the Web service endpoint could be retrieved using a WS-Transfer GET request directed to the endpoint identified by the mex:MetadataReference element in lines 72-76 of Table 2, some endpoints may choose to support explicit request for metadata. Table 3 illustrates a sample Get Metadata request for the WS-Policy [WS-Policy].
Table 3: Sample Get Metadata request message
(01) <s11:Envelope (02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/' (03) xmlns:wsa10='http://www.w3.org/2005/08/addressing' (04) xmlns:mex='http://schemas.xmlsoap.org/ws/2004/09/mex' > (05) <s11:Header> (06) <wsa10:To>http://services.example.org/stockquote</wsa10:To> (07) <wsa10:Action> (08) http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Request (09) </wsa10:Action> (10) <wsa10:MessageID> (11) urn:uuid:73d7edfc-5c3c-49b9-ba46-2480caee43e9 (12) </wsa10:MessageID> (13) <wsa10:ReplyTo> (14) <wsa10:Address>http://client.example.org</wsa10:Address> (15) </wsa10:ReplyTo> (16) </s11:Header> (17) <s11:Body> (18) <mex:GetMetadata> (19) <mex:Dialect>http://schemas.xmlsoap.org/ws/2004/09/policy</mex:Dialect> (20) <mex:Identifier> (21) http://services.example.org/stockquote/policy (22) </mex:Identifier> (23) </mex:GetMetadata> (24) </s11:Body> (25) </s11:Envelope>
Lines 7-9 in Table 3 indicate this is a Get Metadata request. As lines 18-22 indicate, this request is for the policy of the Web service endpoint (line 6).
Table 4 lists a sample response to the request in Table 3.
Table 4: Sample Get Metadata response message
(01) <s11:Envelope (02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/' (03) xmlns:wsa10='http://www.w3.org/2005/08/addressing' (04) xmlns:wsp='http://schemas.xmlsoap.org/ws/2004/09/policy' (05) xmlns:mex='http://schemas.xmlsoap.org/ws/2004/09/mex'> (06) <s11:Header> (07) <wsa10:To>http://client.example.org</wsa10:To> (08) <wsa10:Action> (09) http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Response (10) </wsa10:Action> (11) <wsa10:RelatesTo> (12) urn:uuid:73d7edfc-5c3c-49b9-ba46-2480caee43e9 (13) </wsa10:RelatesTo> (14) </s11:Header> (15) <s11:Body> (16) <mex:Metadata> (17) <mex:MetadataSection (18) Dialect='http://schemas.xmlsoap.org/ws/2004/09/policy' (19) Identifier='http://services.example.org/stockquote/policy'> (20) <wsp:Policy> (21) <wsp:ExactlyOne> (22) <!-- Policy alternatives --> (23) </wsp:ExactlyOne> (24) </wsp:Policy> (25) </mex:MetadataSection> (26) </mex:Metadata> (27) </s11:Body> (28) </s11:Envelope>
Lines 8-10 in Table 4 indicate this message is a response to a Get Metadata request, and lines 11-13 indicate that it is a response to the request in Table 3. Lines 16-26 contain a single Metadata Section (lines 17-25); line 18 indicates that the metadata in this section is of type, or dialect, WS-Policy while line 19 identifies a specific policy document. Line 22 would have contained the policy expressions for the Web service endpoint to which the Get Metadata request of Table 3 was directed.
The XML namespace URI that MUST be used by implementations of this specification is:
http://schemas.xmlsoap.org/ws/2004/09/mex
Table 5 lists XML namespaces that are used in this specification. The choice of any namespace prefix is arbitrary and not semantically significant.
Prefix | XML Namespace | Specification(s) |
---|---|---|
s | (Either SOAP 1.1 or 1.2) | (Either SOAP 1.1 or 1.2) |
s11 | http://schemas.xmlsoap.org/soap/envelope/ | SOAP 1.1 [SOAP 1.1] |
s12 | http://www.w3.org/2003/05/soap-envelope | SOAP 1.2 [SOAP 1.2] |
wsa04 | http://schemas.xmlsoap.org/ws/2004/08/addressing | WS-Addressing 2004 [WS-Addressing 2004] |
wsa10 | http://www.w3.org/2005/08/addressing | WS-Addressing 1.0 Core [WS-Addressing 1.0 Core] |
wsdl | http://schemas.xmlsoap.org/wsdl/ | WSDL [WSDL 1.1] |
wsp | http://schemas.xmlsoap.org/ws/2004/09/policy | WS-Policy [WS-Policy] |
mex | http://schemas.xmlsoap.org/ws/2004/09/mex | This specification |
xs | http://www.w3.org/2001/XMLSchema | XML Schema [Part 1, 2] |
wxf | http://schemas.xmlsoap.org/ws/2004/09/transfer | WS-Transfer [WS-Transfer] |
The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 [RFC 2119].
This specification uses the following syntax to define outlines for messages:
In addition to Message Information Header properties [WS-Addressing 2004] and Message Addressing Properties [WS-Addressing 1.0 Core], this specification uses the following properties to define messages:
These properties bind to a SOAP 1.1 Envelope [SOAP 1.1] as follows:
<s11:Envelope> <s11:Header>[Headers] ... </s11:Header> <s11:Body>[Body]</s11:Body> </s11:Envelope>
These properties bind to a SOAP 1.2 Envelope [SOAP 1.2] as follows:
<s12:Envelope> <s12:Header>[Headers] ... </s12:Header> <s12:Body>[Body]</s12:Body> </s12:Envelope>
An implementation is not compliant with this specification if it fails to satisfy one or more of the MUST or REQUIRED level requirements defined herein. A SOAP Node MUST NOT use the XML namespace identifier for this specification (listed in Section 2.2) within XML documents, SOAP Envelopes, and [WS-Addressing 2004, WS-Addressing 1.0 Core] endpoint references unless it is compliant with this specification.
Support for the GetMetadata operation by a Web service is optional. If metadata about a Web service endpoint is referenced by a Metadata Reference, which is a [WS-Addressing 2004, WS-Addressing 1.0 Core] endpoint reference, then the Metadata Reference MUST refer to a [WS-Transfer] resource. The referred resource MAY also support other resource management and access specifications (e.g. HTTP, WS-ResourceFramework).
Normative text within this specification takes precedence over outlines, which in turn take precedence over the XML Schema [XML Schema Part 1, Part 2] and WSDL [WSDL 1.1] descriptions (if any), which in turn take precedence over examples.
A resource is a Web service that is addressable by an endpoint reference [WS-Addressing 2004, WS-Addressing 1.0 Core] and can be represented by an XML Infoset. The resource's representation can be retrieved using the Get operation defined in [WS-Transfer].
When the representation of a resource is mex:Metadata, as defined in Section 4, or any other document format (e.g. [XML Schema Part 1, Part 2], [WSDL], [WS-Policy]) for which a mex:MetadataSection/@Dialect has been defined, then the resource is referred as 'metadata resource'. The representation of a metadata resource MAY be retrieved and/or updated as any other [WS-Transfer] resource. Specifically, the representation of a metadata resource MUST be retrievable through a [WS-Transfer] Get operation.
A Web service endpoint MAY have one or more associated metadata resources. A Web service endpoint MAY also support direct retrieval of metadata by requesters using a GetMetadata operation directed to the Web service endpoint itself, as described in Section 5.2.
A metadata resource MAY support other operations defined by [WS-Transfer], such as Put (e.g. to allow update of non-static metadata by authorized agents), or other resource management and access specifications (e.g. HTTP, WS-ResourceFramework).
The Web service Metadata element is a collection of metadata units such as [WSDL] definitions, XML Schema [XML Schema Part 1, Part 2] documents, [WS-Policy] expressions, etc. Each unit corresponds to metadata for a given scope, domain, or namespace. The collection of units is represented by a Metadata element, and units within the collection are represented by Metadata Section elements.
To facilitate processing, Metadata Sections are tagged with a @Dialect and (optionally) @Identifier of the metadata unit. To ensure scalability, a unit of metadata may be included in-line within its Metadata Section or may be included by reference, either an endpoint reference [WS-Addressing 2004, WS-Addressing 1.0 Core] (Metadata Reference) or a URL (Location).
The outline for the Metadata element is:
<mex:Metadata …> <mex:MetadataSection Dialect="xs:anyURI" (Identifier="xs:anyURI")? …> ( <mex:MetadataReference …> endpoint-reference </mex:MetadataReference> | <mex:Location>xs:anyURI</mex:Location> | DialectSpecificElement ) </mex:MetadataSection>* … </mex:Metadata>
The following describes additional constraints on the outline listed above:
Dialect URI | Metadata Format |
---|---|
http://www.w3.org/2001/XMLSchema | xs:schema [XML Schema Part 1] |
http://schemas.xmlsoap.org/wsdl/ | wsdl:definitions [WSDL 1.1] |
http://schemas.xmlsoap.org/ws/2004/09/policy | wsp:Policy [WS-Policy] |
http://schemas.xmlsoap.org/ws/2004/09/policy/attachment | wsp:PolicyAttachment [WS-PolicyAttachment] |
http://schemas.xmlsoap.org/ws/2004/09/mex | mex:Metadata [This specification] |
If there is more than one metadata unit with the same Dialect, e.g., more than one XML Schema document, including them all, one per Metadata Section, is explicitly encouraged.
Dialect URI | @Identifier value |
---|---|
Dialect URI | @Identifier value |
http://www.w3.org/2001/XMLSchema | xs:schema/@targetNamespace |
http://schemas.xmlsoap.org/wsdl/ | wsdl:definitions/@targetNamespace |
http://schemas.xmlsoap.org/ws/2004/09/policy | wsp:Policy/@Name |
http://schemas.xmlsoap.org/ws/2004/09/policy/attachment | Not defined |
http://schemas.xmlsoap.org/ws/2004/09/mex | Not defined |
If there is more than one metadata section with the same identifier, e.g., more than one XML Schema in the same target namespace, including them all, one per metadata section, is explicitly encouraged.
To retrieve the representation of a metadata resource, a requester MAY send a WS-Transfer [WS-Transfer] Get request message to the metadata resource's endpoint. The WS-Transfer Get request fetches a one-time snapshot of the metadata. The metadata associated with a service endpoint may be available as multiple metadata resources. As a result, the metadata returned by the Get request to a metadata resource's endpoint may be limited to a particular metadata type (@Dialect) and identifier (@Identifier).
The representation of a metadata resource MAY be a mex:Metadata element or any other document format (e.g. [XML Schema Part 1, Part 2], [WSDL], [WS-Policy]) for which a mex:MetadataSection/@Dialect has been defined.
When the metadata for an endpoint is not available or is unknown and there is no information on how to retrieve it (e.g. an endpoint reference to a [WS-Transfer] resource representing the metadata), a requester MAY send a Get Metadata request message to that endpoint to retrieve its metadata. A service endpoint MAY support the Get Metadata request. Observe that, in the case where a service endpoint is also a [WS-Transfer] resource, the [WS-Transfer] Get operation allows requesters to retrieve the resource representation associated with that endpoint (i.e. the "data"), while the GetMetadata operation can be used to retrieve that endpoint's metadata. The normative outline for a Get Metadata request is:
[action] http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Request [Body] <mex:GetMetadata …> (<mex:Dialect>xs:anyURI</mex:Dialect> (<mex:Identifier>xs:anyURI</mex:Identifier>)? )? </mex:GetMetadata>
The following describes additional, normative constraints on the outline listed above:
Other message information headers defined by WS-Addressing [WS-Addressing 2004, WS-Addressing 1.0 Core] MAY be included in the request and response messages, according to the usage and semantics defined in WS-Addressing.
An endpoint MAY respond with a fault message using the standard fault codes defined in WS-Addressing [WS-Addressing 2004, WS-Addressing 1.0 Core] (e.g., wsa04:ActionNotSupported).
If an endpoint accepts a Get Metadata request, it MUST reply with a Get Metadata response message. The normative outline for a Get Metadata response is:
[action] http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Response [Body] <mex:Metadata …> … </mex:Metadata>
The following describes additional, normative constraints on the outline listed above:
Section 5 describes two mechanisms that allow requesters to retrieve ("pull metadata") Web services metadata from an endpoint (GetMetadata) or a metadata resource (WS-Transfer Get).
In addition to these mechanisms, the issuer of a service endpoint reference MAY include Web services metadata for that service inside the endpoint reference itself. This mechanism ("push metadata") simplifies the bootstrapping of the service interaction on the requester side by avoiding additional calls to retrieve (pull) the Web service metadata for the service endpoint.
Embedding a mex:Metadata element inside an endpoint reference allows the issuer of the endpoint reference to include metadata by value or by reference, according to the options described in Section 4. The outline of a [WS-Addressing 2004] endpoint reference which includes Web services metadata is as follows:
<wsa04:EndpointReference> <wsa04:Address>xs:anyURI</wsa04:Address> <wsa04:ReferenceProperties>…</wsa04:ReferenceProperties> ? <wsa04:ReferenceParameters>…</wsa04:ReferenceParameters> ? <wsa04:PortType>xs:QName</wsa04:PortType> ? <wsa04:ServiceName PortName="xs:NCName"?>xs:QName</wsa04:ServiceName> ? <wsp:Policy>…</wsp:Policy>* <mex:Metadata>…</mex:Metadata>? … </wsa04:EndpointReference>
The outline of a [WS-Addressing 1.0 Core] endpoint reference which includes Web services metadata is as follows:
<wsa10:EndpointReference> <wsa10:Address>xs:anyURI</wsa10:Address> <wsa10:ReferenceParameters>…</wsa10:ReferenceParameters> ? <wsa10:Metadata> <mex:Metadata>…</mex:Metadata>? … </wsa10:Metadata> ? … </wsa10:EndpointReference>
In the example of Table 6, a [WS-Addressing 1.0 Core] endpoint reference contains WSDL metadata by value that identifies the binding used to access the service endpoint:
Table 6. Endpoint reference with embedded WSDL metadata
(01) <wsa10:EndpointReference (02) xmlns:wsa10='http://www.w3.org/2005/08/addressing'> (03) <wsa10:Address>http://services.example.org/stockquote</wsa10:Address> (04) <wsa10:Metadata> (05) <mex:Metadata xmlns:mex='http://schemas.xmlsoap.org/ws/2004/09/mex'> (06) <mex:MetadataSection Dialect='http://schemas.xmlsoap.org/wsdl/'> (07) <wsdl:definitions (08) name='StockQuote' (09) targetNamespace='http://services.example.org/stockquote' (10) xmlns:tns='http://services.example.org/stockquote' (11) xmlns:wsoap='http://schemas.xmlsoap.org/wsdl/soap/' (12) xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/' (13) xmlns:wsp='http://schemas.xmlsoap.org/ws/2004/09/policy' (14) xmlns:msgs='http://services.example.org/stockquote/schemas (15) xmlns:xs='http://www.w3.org/2001/XMLSchema'> (16) <wsdl:import (17) namespace='http://services.example.org/stockquote' (18) location='http://services.example.org/stockquote/schemas' /> (19) <wsdl:portType name='StockQuotePortType'> (20) <wsdl:operation name='GetLastTradePrice'> (21) <wsdl:input message='msgs:GetLastTradePriceInput' (22) name='GetLastTradePriceInput'/> (23) <wsdl:output message='msgs:GetLastTradePriceOutput' (24) name='GetLastTradePriceOutput'/> (25) </wsdl:operation> (26) </wsdl:portType> (27) <wsdl:binding name='StockQuoteBinding' (28) type='tns:StockQuotePortType'> (29) <wsp:PolicyReference (30) URI='http://services.example.org/stockquote/policy' /> (31) <wsoap:binding style='document' (32) transport='http://schemas.xmlsoap.org/soap/http'/> (33) <wsdl:operation name='GetLastTradePrice'> (34) <wsoap:operation soapAction='http://services.example.org/stockquote/GetLastTradePrice' /> (35) <wsdl:input name='GetLastTradePriceInput'> (36) <wsoap:body use='literal'/> (37) </wsdl:input> (38) <wsdl:output name='GetLastTradePriceOutput'> (39) <wsoap:body use='literal'/> (40) </wsdl:output> (41) </wsdl:operation> (42) </wsdl:binding> (43) <wsdl:service name='StockQuoteService'> (44) <wsdl:port name='StockQuotePort' (45) binding='tns:StockQuoteBinding' > (46) <wsoap:address (47) location='http://services.example.org/stockquote' /> (48) </wsdl:port> (49) </wsdl:service> (50) </wsdl:definitions> (51) </mex:MetadataSection> (52) <mex:MetadataSection (53) Dialect='http://www.w3.org/2001/XMLSchema' (54) Identifier='http://services.example.org/stockquote/schemas'> (55) <mex:MetadataReference> (56) <wsa10:Address> (57) http://services.example.org/stockquote/schemas (58) </wsa10:Address> (59) </mex:MetadataReference> (60) </mex:MetadataSection> (61) </mex:Metadata> (62) </wsa10:Metadata> (63) </wsa10:EndpointReference>
Lines 4-62 in Table 6 show the way a Metadata element can be embedded in the endpoint reference of a service. The Metadata element contains two Metadata Sections. In the first one (lines 6-51) the WSDL of the Web service endpoint is included 'by value'. In the second Metadata Section (lines 52-60) an endpoint reference to a metadata resource is shown. The representation of the metadata resource is an XML Schema as hinted by the Dialect attribute (line 53) and is distinguished from other XML Schemas for that Web service endpoint by the value of Identifier attribute (line 54) which in this case happens to be the same as the value of the targetNamespace attribute of the XML Schema. The [WS-Transfer] Get operation can be used to retrieve the referred XML Schema. Since no metadata is available about the metadata resource, it is assumed that binding-related information was communicated out-of-band (e.g. an application domain-specific specification has defined a binding for that domain) so that the requester could send a [WS-Transfer] Get request to the metadata resource's endpoint, as defined in Section 7.
Table 7. Endpoint reference with embedded metadata about the Metadata Reference
(01) <wsa10:EndpointReference (02) xmlns:wsa10='http://www.w3.org/2005/08/addressing'> (03) <wsa10:Address>http://services.example.org/stockquote</wsa10:Address> (04) <wsa10:Metadata> (05) <mex:Metadata xmlns:mex='http://schemas.xmlsoap.org/ws/2004/09/mex'> (06) <mex:MetadataSection (07) Dialect='http://schemas.xmlsoap.org/ws/2004/09/mex'> (08) <mex:MetadataReference> (09) <wsa10:Address> (10) http://services.example.org/stockquote/metadata (11) </wsa10:Address> (12) <wsa10:Metadata> (13) <mex:Metadata> (14) <mex:MetadataSection (15) Dialect='http://schemas.xmlsoap.org/wsdl/'> (16) <!—Reference to WS-Transfer WSDL wxf:Resource portType (17) plus binding --> (18) </mex:MetadataSection> (19) </mex:Metadata> (20) </wsa10:Metadata> (21) </mex:MetadataReference> (22) </mex:MetadataSection> (23) </mex:Metadata> (24) </wsa10:Metadata> (25) </wsa10:EndpointReference>
Table 7 shows an example of a Web service endpoint reference in which the Metadata element contains a single Metadata Reference element to a metadata resource (lines 8-21) the representation of which is mex:Metadata as hinted by the value of the Dialect attribute (line 7). The Metadata Reference contains a Metadata element (lines 13-19) which contains the necessary metadata for interacting with the metadata resource through [WS-Transfer] operations. Since the Metadata Reference is an endpoint reference to a [WS-Transfer] resource, the embedded metadata includes the [WS-Transfer] WSDL portType and the necessary binding information for communicating with that resource.
This specification provides several mechanisms to aid service endpoints and service requesters in bootstrapping the interaction. In particular, the mechanisms described in Section 6 allow issuers of endpoint references to include sufficient protocol binding information to allow requesters to issue a Get request against a metadata resource, or a GetMetadata request against a service endpoint, in order to retrieve all the information needed to use the service.
When that information is not available, however, requesters must rely on contextual or out-of-band information in order to choose the protocol binding most appropriate to use in retrieving Web service metadata. Furthermore, specific protocol bindings for metadata retrieval may be defined by communities within the context of particular application domains.
It is strongly RECOMMENDED that the communication between Web services be secured using the mechanisms described in WS-Security [WS-Security]. In order to properly secure messages, the body and all relevant headers need to be included in the signature. Specifically, any standard messaging headers, such as those from WS-Addressing [WS-Addressing 2004, WS-Addressing 1.0 Core], need to be signed with the body in order to "bind" the two together.
Different security mechanisms may be desired depending on the frequency of messages. For example, for infrequent messages, public key technologies may be adequate for integrity and confidentiality. However, for high-frequency events, it may be more performant to establish a security context for the events using the mechanisms described in WS-Trust [WS-Trust] and WS-SecureConversation [WS-SecureConversation]. It should be noted that if a shared secret is used it is RECOMMENDED that derived keys be used to strengthen the secret as described in WS-SecureConversation.
Requests for metadata that are not available to anonymous parties are strongly RECOMMENDED to require usage of WS-Security so that the requester can be authenticated and authorized to access the indicated metadata. Similarly, integrity and confidentiality SHOULD be used whenever metadata has restricted access.
Recipients of metadata are RECOMMENDED to validate the signature to authenticate and verify the integrity of the data. Specifically, recipients SHOULD verify that the sender has the right to "speak" for the metadata. This is important because some metadata, such as schemas, have embedded target URIs that might be outside the scope of the sender.
Additionally, some metadata formats, such as policies [WS-Policy], may have embedded security semantics. These SHOULD be verified using the same considerations outlined in this section.
The following list summarizes common classes of attacks that apply to this protocol and identifies the mechanism to prevent/mitigate the attacks:
Message alteration - Alteration is prevented by including signatures of the message information using WS-Security.
Message disclosure - Confidentiality is preserved by encrypting sensitive data using WS-Security.
Key integrity - Key integrity is maintained by using the strongest algorithms possible (by comparing secured policies - see WS-Policy [WS-Policy] and WS-SecurityPolicy [WS-SecurityPolicy]).
Authentication - Authentication is established using the mechanisms described in WS-Security and WS-Trust. Each message is authenticated using the mechanisms described in WS-Security.
Accountability - Accountability is a function of the type of and strength of the key and algorithms being used. In many cases, a strong symmetric key provides sufficient accountability. However, in some environments, strong PKI signatures are required.
Availability - Metadata services are subject to a variety of availability attacks such as application-level denial of service. It is recommended that the mechanisms described in WS-Security be considered as mitigations for some forms of attacks. Other attacks, such as network-level denial of service are harder to avoid. Note that both of these classes of attack are outside the scope of this specification.
Replay - Messages may be replayed for a variety of reasons. To detect and eliminate this attack, mechanisms should be used to identify replayed messages such as the timestamp/nonce outlined in WS-Security. Alternatively, and optionally, other technologies, such as sequencing, can also be used to prevent replay of application messages.
This specification has been developed as a result of joint work with many individuals and teams, including: Luis Felipe Cabrera (formerly Microsoft), Erik Christensen (Microsoft), Srinivas Davanum (formerly CA), Doug Davis (IBM), Timm Falter (SAP), Jeffrey Frey (IBM), Omri Gazitt (Microsoft), Alan Geller (formerly Microsoft), Martin Gudgin (Microsoft), Maryann Hondo (IBM), Chris Kaler (Microsoft), Dave Langworthy (Microsoft), Andrew Layman (Microsoft), Steve Millet (Microsoft), Henrik Frystyk Nielsen (Microsoft), Mark Nottingham (formerly BEA Systems), Sanjay Patil (SAP), Vladimir Savchenko (SAP), Igor Sedukhin (formerly CA), Ramesh Seshadri (Microsoft), Chris Sharp (IBM), Eugene Sindambiwe (SAP), Tony Storey (IBM), Marvin Theimer (Microsoft), Sara Wong (Microsoft), Ümit Yalçinalp (SAP), Alexander Zubev (SAP).
A normative copy of the XML Schema [XML Schema Part 1, Part 2] description for this specification may be retrieved from the following address:.
http://schemas.xmlsoap.org/ws/2004/09/mex/MetadataExchange.xsd
A non-normative copy of the XML Schema description is listed below for convenience.
<xs:schema targetNamespace='http://schemas.xmlsoap.org/ws/2004/09/mex' xmlns:tns='http://schemas.xmlsoap.org/ws/2004/09/mex' xmlns:wsa10='http://www.w3.org/2005/08/addressing' xmlns:wsa04='http://schemas.xmlsoap.org/ws/2004/08/addressing' xmlns:xs='http://www.w3.org/2001/XMLSchema' elementFormDefault='qualified' blockDefault='#all' > <!-- Get Metadata request --> <xs:element name='GetMetadata' > <xs:complexType> <xs:sequence> <xs:element ref='tns:Dialect' minOccurs='0' /> <xs:element ref='tns:Identifier' minOccurs='0' /> </xs:sequence> <xs:anyAttribute namespace='##other' processContents='lax' /> </xs:complexType> </xs:element> <xs:element name='Dialect' type='xs:anyURI' /> <xs:element name='Identifier' type='xs:anyURI' /> <!-- Get Metadata response --> <xs:element name='Metadata' > <xs:complexType> <xs:sequence> <xs:element ref='tns:MetadataSection' minOccurs='0' maxOccurs='unbounded' /> <xs:any namespace='##other' processContents='lax' minOccurs='0' maxOccurs='unbounded' /> </xs:sequence> <xs:anyAttribute namespace='##other' processContents='lax' /> </xs:complexType> </xs:element> <xs:element name='MetadataSection' > <xs:complexType> <xs:choice> <xs:any namespace='##other' processContents='lax' /> <xs:element ref='tns:MetadataReference' /> <xs:element ref='tns:Location' /> </xs:choice> <xs:attribute name='Dialect' type='xs:anyURI' use='required' /> <xs:attribute name='Identifier' type='xs:anyURI' /> <xs:anyAttribute namespace='##other' processContents='lax' /> </xs:complexType> </xs:element> <!-- Ideally, the type of the MetadataReference would have been the union of wsa04:EndpointReferenceType and wsa10:EndpointReferenceType but unfortunately xs:union only works for simple types. As a result, we have to define the mex:MetadataReference using xs:any. --> <xs:element name='MetadataReference'> <xs:complexType> <xs:sequence> <xs:any minOccurs='1' maxOccurs='unbounded' processContents='lax' namespace='##other' /> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='Location' type='xs:anyURI' /> </xs:schema>
A normative copy of the WSDL [WSDL 1.1] description for this specification can be retrieved from the following address:
http://schemas.xmlsoap.org/ws/2004/09/mex/metadataexchange.wsdl
A non-normative copy of the WSDL description is listed below for convenience.
<wsdl:definitions targetNamespace='http://schemas.xmlsoap.org/ws/2004/09/mex' xmlns:tns='http://schemas.xmlsoap.org/ws/2004/09/mex' xmlns:wsa10='http://www.w3.org/2005/08/addressing' xmlns:wsa04='http://schemas.xmlsoap.org/ws/2004/08/addressing' xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/' xmlns:xs='http://www.w3.org/2001/XMLSchema' > <wsdl:types> <xs:schema targetNamespace='http://schemas.xmlsoap.org/ws/2004/09/mex' > <xs:include schemaLocation='metadataexchange.xsd' /> </xs:schema> </wsdl:types> <wsdl:message name='GetMetadataMsg' > <wsdl:part name='body' element='tns:GetMetadata' /> </wsdl:message> <wsdl:message name='GetMetadataResponseMsg' > <wsdl:part name='body' element='tns:Metadata' /> </wsdl:message> <wsdl:portType name='MetadataExchange' > <wsdl:operation name='GetMetadata' > <wsdl:input message='tns:GetMetadataMsg' wsa10:Action= 'http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Request' wsa04:Action= 'http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Request' /> <wsdl:output message='tns:GetMetadataResponseMsg' wsa10:Action= 'http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Response' wsa04:Action= 'http://schemas.xmlsoap.org/ws/2004/09/mex/GetMetadata/Response'/> </wsdl:operation> </wsdl:portType> </wsdl:definitions>