Copyright © 2008 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply.
The identification of resources on the Web by URI alone may not be sufficient, as other factors such as HTTP content negotiation might come into play. This issue is particularly significant for quality assurance testing, conformance claims, and reporting languages like the W3C Evaluation And Report Language (EARL). This document provides a representation of the HTTP vocabulary in RDF, to allow quality assurance tools to record the HTTP headers that have been exchanged between a client and a server. The RDF terms defined by this document represent the core HTTP specification defined by RFC 2616, as well as additional HTTP headers registered by IANA. These terms can also be used to record HTTPS exchanges.
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 and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This Working Draft of the HTTP Vocabulary in RDF document was published on 8 September 2008 by the Evaluation and Repair Tools Working Group (ERT WG). It is an update of the previous HTTP Vocabulary in RDF Working Draft of 23 March 2007, and addresses the comments received since (see history of document changes). This document is part of the W3C Evaluation And Report Language (EARL). It is expected to be the last working draft before publication as a W3C Working Group Note.
[Editor's note: change text appropriately]
The RDF terms defined by this document can be used to extend the Evaluation And Report Language (EARL) 1.0 Schema, but can also be used separately to record an HTTP exchange between a client and a server for any purpose. The Working Group encourages feedback about the approach, as well as about the completeness and maturity of this document by developers and researchers who have interest in a representation of the HTTP vocabulary in RDF format. Feedback from the W3C Quality Assurance Interest Group, the W3C Semantic Web Interest Group, and the Protocol for Web Description Resources Working Group is particularly welcome. Please send comments on this document by @@@ CHANGE @@@29 September 2008 to the public mailing list of the working group public-wai-ert@w3.org. The archives of the working group mailing list are publicly available.
[Editor's note: change date for comments]
Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.
This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. The group does not expect this document to become a W3C Recommendation. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.
This document defines a representation of the Hypertext Transfer Protocol (HTTP) using the Resource Description Framework (RDF). It defines a collection of RDF classes and properties that represent the HTTP vocabulary as defined by the HTTP specification. These RDF terms can be used to record HTTP or HTTPS request and response messages in RDF format, such as by automated Web accessibility evaluation tools that want to describe Web resources, including the various headers exchanged between the client and server during content negotiation. More usage examples for these terms are described in section 1.2 Use Cases.
This document is not intended to be a clarification or extension of the different concepts of the HTTP specification. The HTTP specification is defined by a series of Request for Comments (RFC) publications and other documentation, including RFC 2616 and RFC 4229. These are listed in Appendix C: References.
Additionally this document assumes the following background knowledge:
By default, the vocabulary introduced by this document uses names starting with upper-case letters for classes and names starting with lower-case letters for properties. The keywords must, required, recommended, should, may, and optional are used in accordance with [RFC2119].
The RDF representation of the HTTP vocabulary defined by this document uses the namespace http://www.w3.org/2006/http#
. The prefix http
is used throughout this document to denote this namespace. Table 1 presents the namespaces used by this document. The prefix notation presents the typical conventions used in the Web and in this document to denote a given namespace, and can be freely modified. Table 2 presents additional RDF data used by this document.
Namespace prefix | Namespace URI | Description |
---|---|---|
http |
http://www.w3.org/2006/http# |
Namespace for the core terms of HTTP vocabulary in RDF. |
cnt |
http://www.w3.org/2008/content# |
Namespace for Representing Content in RDF [Content in RDF]. |
dc |
http://purl.org/dc/elements/1.1/ |
Namespace for the Dublin Core Metadata Element Set. |
rdf |
http://www.w3.org/1999/02/22-rdf-syntax-ns# |
Namespace for RDF [RDF]. |
URI | Description |
---|---|
http://www.w3.org/2008/http-headers |
HTTP headers as registered by the IANA (see [RFC4229], [Permanent Headers], and [Provisional Headers]). |
http://www.w3.org/2008/http-methods |
HTTP methods for requests. |
http://www.w3.org/2008/http-statusCodes |
HTTP status codes for responses. |
The following (non-exhaustive) list of use cases aims to highlight some of the different usages of the terms provided by this document:
There are also notable schema limitations with regards to security and privacy since the content recorded by this vocabulary could potentially contain sensitive information, for example authentication information in HTTP headers or other information (login user name, passwords, etc.) within the body of the message. Since the schema of this document is limited to terms defined by the HTTP vocabulary, security and privacy considerations need to be made at the application level. For example, certain parts of the data may be restricted to appropriate user permissions or obfuscated.
[Editor's note: what should be the purpose of the SPARQL queries?]
This section defines RDF classes for the HTTP 1.1 specification according to [RFC 2616].
A connection that is used for the HTTP transfer.
Properties defined by this document:
Conformance Note: A connection must have exactly 1 connection authority, and 0 or 1 requests collection.
Example 2.1: A Connection
resource.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xml:base="http://www.example.org/connection#"> <http:Connection rdf:ID="conn"> <http:connectionAuthority>www.example.org:80</http:connectionAuthority> <http:requests rdf:parseType="Collection"> <http:Request rdf:ID="req0"/> <http:Request rdf:ID="req1"/> </http:requests> </http:Connection> </rdf:RDF>
An HTTP message.
Properties defined by this document:
Properties not defined by this document:
dc:date
Conformance Note: A Message must have exactly 1 HTTP version, and 0 or 1 headers collection, body and date.
Example 2.2: A Message
resource.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:base="http://example.org/message#"> <http:Message rdf:ID="mess0"> <http:httpVersion>1.1</http:httpVersion> <dc:date>2007-09-13</dc:date> <http:headers rdf:parseType="Collection"> <http:MessageHeader rdf:ID="mh0"/> <http:MessageHeader rdf:ID="mh1"/> </http:headers> <http:body> <cnt:Content rdf:ID="cont0"/> </http:body> </http:Message> </rdf:RDF>
There are two subclasses from the http:Message
class: http:Request
and http:Response
.
An HTTP request. The http:Request
class is a subclass of the http:Message
class.
Properties defined by this document:
The dc:date
property when used in a Request
resource represents the date the request was sent by the client.
Conformance Note: A request must have exactly 1 methodName and requestURI, and 0 or 1 method and response.
Example 2.3: A Request
resource.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:base="http://example.org/reqs#"> <http:Request rdf:ID="reqs0"> <http:abs_path>/</http:abs_path> <http:methodName>GET</http:methodName> <http:method rdf:resource="http://www.w3.org/2008/http-methods#GET"/> <http:response rdf:resource="#resp0"/> <dc:date>2007-09-13</dc:date> <http:httpVersion>1.1</http:httpVersion> <http:headers rdf:parseType="Collection"> <http:MessageHeader rdf:about="#mh0"/> <http:MessageHeader rdf:about="#mh1"/> </http:headers> </http:Request> <http:MessageHeader rdf:ID="mh0"/> <http:MessageHeader rdf:ID="mh1"/> </rdf:RDF>
An HTTP response. The http:Response
class is a subclass of the http:Message
class.
Properties defined by this document:
The dc:date
property when used in a Response
resource represents the date the response was received by the client.
Conformance Note: A Response must have exactly 1 status code number (literal) and reason phrase, and 0 or 1 status code (resource).
Example 2.4: A Response
resource.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cnt="http://www.w3.org/2008/content#" xml:base="http://example.org/resp#"> <http:Response rdf:ID="resp0"> <http:httpVersion>1.1</http:httpVersion> <dc:date>2008-01-11</dc:date> <http:statusCodeNumber>200</http:statusCodeNumber> <http:statusCode rdf:resource="http://www.w3.org/2008/http-statusCodes#statusCode200"/> <http:headers rdf:parseType="Collection"> <http:MessageHeader rdf:about="#mh0"/> <http:MessageHeader rdf:about="#mh1"/> </http:headers> <http:body> <cnt:Content rdf:ID="cont0"/> </http:body> </http:Response> <http:MessageHeader rdf:ID="mh1"/> <http:MessageHeader rdf:ID="mh0"/> </rdf:RDF>
An HTTP header.
Properties defined by this document:
Conformance Note: A MessageHeader must have exactly 1 fieldName and fieldValue, and 0 or 1 headerName and headerElements collection.
Example 2.5: A MessageHeader
resource.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xml:base="http://example.org/mh#"> <http:MessageHeader rdf:ID="mh0"> <http:fieldValue>text/html, image/png, image/gif;q=0.8</http:fieldValue> <http:fieldName>Accept</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#accept"/> <http:headerElements rdf:parseType="Collection"> <http:HeaderElement rdf:about="#he0"/> <http:HeaderElement rdf:about="#he1"/> <http:HeaderElement rdf:about="#he2"/> </http:headerElements> </http:MessageHeader> <http:HeaderElement rdf:ID="he0"/> <http:HeaderElement rdf:ID="he2"/> <http:HeaderElement rdf:ID="he1"/> </rdf:RDF>
An element in a header value.
Properties defined by this document:
Conformance Note: A HeaderElement must have exactly 1 elementName, and 0 or 1 elementValue and params collection.
Example 2.6: A HeaderElement
resource.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xml:base="http://example.org/he#"> <http:HeaderElement rdf:ID="he0"> <http:elementName>image/gif</http:elementName> <http:params rdf:parseType="Collection"> <http:Param rdf:ID="param0"/> </http:params> </http:HeaderElement> </rdf:RDF>
An element in a header value parameter.
Properties defined by this document:
Conformance Note: A Param must have exactly 1 paramName and paramValue.
Example 2.7: A Param
resource.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xml:base="http://example.org/param#"> <http:Param rdf:ID="param0"> <http:paramName>q</http:paramName> <http:paramValue>0.8</http:paramValue> </http:Param> </rdf:RDF>
The HTTP 1.1 specification defines eight methods: OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT. The resource at http://www.w3.org/2008/http-methods
provides http:Method
resources for each of these to be used as objects for the http:method
property. A resource of type http:Method
represents the name of a method used with HTTP.
Properties defined by this document:
[HTTP Status Codes] is a registry for status codes too be used in HTTP. The resource at http://www.w3.org/2008/http-statusCodes
provides http:StatusCode
resources for each of these to be used as objects for the http:statusCode
property. A resource of type http:StatusCode
represents a status code.
Properties defined by this document:
Status codes in HTTP may be grouped. The resource at http://www.w3.org/2008/http-statusCodes
provides http:StatusCodeGroup
resources for some groupings of status codes. A resource of type http:StatusCodeGroup
represents a group of status codes.
Header names to be used in HTTP are registered by the IANA (see [RFC4229], [Permanent Headers], and [Provisional Headers]). The resource at http://www.w3.org/2008/http-headers
provides http:HeaderName
resources for each of these to be used as objects for the http:headerName
property. A resource of type http:HeaderName
represents the name of a header used with HTTP.
Properties defined by this document:
This section defines RDF properties for the HTTP 1.1 specification according to [RFC 2616].
This property relates a resource object of the type Message
to a resource object of the type cnt:Content
or a subclass thereof to be the Message's entity body as defined in [RFC 2616]. HTTP bodies are series of bytes. Thus for the resource object, it is always possible to point be a cnt:Base64Content
resource. If the body is textual content, it can also be a cnt:TextContent
resource. If the body is XML content, it can also be a cnt:XMLContent
resource (see [Content in RDF] for more information on content representations in RDF).
http:Message
[Editor's note: Should the range of http:body be cnt:Content?]
Note: For multiple representations of the same entity body, an RDF container must be used to describe the relationship. For example the rdf:Bag
container may be useful if all representations are equivalent, or in other cases rdf:Alt
may be useful if there is a prefered representation with alternatives.
Example 3.1: Multiple representations of the same entity body.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:base="http://example.org/message#"> <http:Message rdf:ID="mess0"> <http:body> <rdf:Alt> <rdf:li> <cnt:XMLContent rdf:ID="cont0"/> <rdf:li> <rdf:li> <cnt:TextContent rdf:ID="cont0-alt1"/> <rdf:li> <rdf:li> <cnt:Base64Content rdf:ID="cont0-alt2"/> <rdf:li> </rdf:Alt> </http:body> </http:Message> </rdf:RDF>
Connection authority - server host and port for a connection.
http:Connection
Header element name (Literal).
http:HeaderElement
Header element value (Literal).
http:HeaderElement
Header name (Literal).
http:MessageHeader
Header value (Literal).
http:MessageHeader
HTTP headers sent with the message.
http:Message
Conformance Note: The objects for this property must be a Collection of http:MessageHeader
resources.
Header value elements.
http:MessageHeader
Conformance Note: The objects for this property must be a Collection of http:HeaderElement
resources.
This property relates a resource of type http:MessageHeader
to a resource of type http:HeaderName
.
http:MessageHeader
http:HeaderName
Property representing the HTTP version number as a Literal (the format is 'digit.digit').
http:Message
HTTP method.
http:Request
http:Method
HTTP method name (Literal).
http:Request
Header element parameters.
http:HeaderElement
Conformance Note: The object for this property must be a Collection of http:Param
resources.
Parameter name.
http:Param
Parameter value.
http:Param
Reason phrase sent by the server.
http:Response
HTTP requests sent via the connection.
http:Connection
Conformance Note: The object for this property must be a Collection of http:Request
resources.
The request URI as specified in section 5.1.2 of [RFC 2616]. This vocabulary defines the following sub-properties:
http:Request
Conformance Note: The object for this property must be the constant value http:asterisk
.
Example 3.2: The use of the requestURI
property.
<http:Request> <http:methodName>OPTIONS</http:methodName> <http:requestURI rdf:resource="http://www.w3.org/2006/http#asterisk"/> ... </http:Request>
Request URI that is an absolute URI.
Conformance Note: The object for this property must be a Literal (absolute URI).
Example 3.3: The use of the absoluteURI
property.
<http:Request> <http:methodName>GET</http:methodName> <http:absoluteURI>http://www.example.org:80/foo/bar</http:absoluteURI> ... </http:Request>
Request URI that is an absolute path.
Conformance Note: The object for this property must be a Literal (absolute path).
Example 3.4: The use of the abs_path
property.
<http:Request> <http:methodName>GET</http:methodName> <http:abs_path>/foo/bar</http:abs_path> ... </http:Request>
Request URI that is an authority.
Conformance Note: The object for this property must be a Literal (host and optional port number).
Example 3.5: The use of the authority
property.
<http:Request> <http:methodName>CONNECT</http:methodName> <http:authority>www.example.org:80</http:authority> ... </http:Request>
This property relates a resource of type http:Request
to a resource of type http:Response
.
http:Request
http:Response
This property relates a resource of type http:Response
to a resource of type http:StatusCode
.
http:Response
http:StatusCode
The status code sent by the server (Literal).
http:Response
The following example shows an RDF/XML representation of an HTTP request and response pair.
A client sends two requests to a server at www.example.org
port 80 via HTTP 1.1 GET. With each request, it sends request headers. The first request is for a resource in the document root (/
), the second for a resource at /image
. While handling the second request the server performs content negotiation respecting the request's Accept
header and so sends a PNG image. This is indicated by the response's Vary
header.
<?xml version="1.0" encoding="utf-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:http="http://www.w3.org/2006/http#" xmlns:cnt="http://www.w3.org/2008/content#"> <http:Connection rdf:ID="conn"> <http:connectionAuthority>www.example.org:80</http:connectionAuthority> <http:requests rdf:parseType="Collection"> <http:Request rdf:about="#req0"/> <http:Request rdf:about="#req1"/> </http:requests> </http:Connection> <http:Request rdf:about="#req0"> <http:httpVersion>1.1</http:httpVersion> <http:methodName>GET</http:methodName> <http:method rdf:resource="http://www.w3.org/2008/http-methods#GET"/> <http:abs_path>/</http:abs_path> <http:headers rdf:parseType="Collection"> <http:MessageHeader> <http:fieldName>Host</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#host"/> <http:fieldValue>www.example.org</http:fieldValue> </http:MessageHeader> <http:MessageHeader> <http:fieldName>User-Agent</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#user-agent"/> <http:fieldValue>My User Agent</http:fieldValue> </http:MessageHeader> <http:MessageHeader> <http:fieldName>Accept</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#accept"/> <http:fieldValue>text/html, image/png, image/gif;q=0.8</http:fieldValue> <http:headerElements rdf:parseType="Collection"> <http:HeaderElement> <http:elementName>text/html</http:elementName> </http:HeaderElement> <http:HeaderElement> <http:elementName>image/png</http:elementName> </http:HeaderElement> <http:HeaderElement> <http:elementName>image/gif</http:elementName> <http:params rdf:parseType="Collection"> <http:Param> <http:paramName>q</http:paramName> <http:paramValue>0.8</http:paramValue> </http:Param> </http:params> </http:HeaderElement> </http:headerElements> </http:MessageHeader> </http:headers> <http:response rdf:resource="#resp0"/> </http:Request> <http:Request rdf:about="#req1"> <http:httpVersion>1.1</http:httpVersion> <http:methodName>GET</http:methodName> <http:method rdf:resource="http://www.w3.org/2008/http-methods#GET"/> <http:abs_path>/image</http:abs_path> <http:headers rdf:parseType="Collection"> <http:MessageHeader> <http:fieldName>Host</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#host"/> <http:fieldValue>www.example.org</http:fieldValue> </http:MessageHeader> <http:MessageHeader> <http:fieldName>User-Agent</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#user-agent"/> <http:fieldValue>My User Agent</http:fieldValue> </http:MessageHeader> <http:MessageHeader> <http:fieldName>Accept</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#accept"/> <http:fieldValue>image/png, image/gif;q=0.8</http:fieldValue> <http:headerElements rdf:parseType="Collection"> <http:HeaderElement> <http:elementName>image/png</http:elementName> </http:HeaderElement> <http:HeaderElement> <http:elementName>image/gif</http:elementName> <http:params rdf:parseType="Collection"> <http:Param> <http:paramName>q</http:paramName> <http:paramValue>0.8</http:paramValue> </http:Param> </http:params> </http:HeaderElement> </http:headerElements> </http:MessageHeader> </http:headers> <http:response rdf:resource="#resp1"/> </http:Request> <http:Response rdf:ID="resp0"> <http:httpVersion>1.1</http:httpVersion> <http:statusCodeNumber>200</http:statusCodeNumber> <http:statusCode rdf:resource="http://www.w3.org/2008/http-statusCodes#200"/> <http:reasonPhrase>OK</http:reasonPhrase> <http:headers rdf:parseType="Collection"> <http:MessageHeader> <http:fieldName>Date</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#date"/> <http:fieldValue>.......</http:fieldValue> </http:MessageHeader> <http:MessageHeader> <http:fieldName>Content-Type</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#content-type"/> <http:fieldValue>text/html; charset=utf-8</http:fieldValue> <http:headerElements rdf:parseType="Collection"> <http:HeaderElement> <http:elementName>text/html</http:elementName> <http:params rdf:parseType="Collection"> <http:Param> <http:paramName>charset</http:paramName> <http:paramValue>utf-8</http:paramValue> </http:Param> </http:params> </http:HeaderElement> </http:headerElements> </http:MessageHeader> </http:headers> <http:body> <cnt:XMLContent> <cnt:xmlLeadingMisc rdf:parseType="Literal"><!-- This is the start of the document --> </cnt:xmlLeadingMisc> <cnt:docTypeDecl> <cnt:DocTypeDecl> <cnt:dtdName>html</cnt:dtdName> <cnt:publicId>-//W3C//DTD XHTML 1.0 Strict//EN</cnt:publicId> <cnt:systemId rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</cnt:systemId> </cnt:DocTypeDecl> </cnt:docTypeDecl> <cnt:xmlRest rdf:parseType="Literal"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title>My document</title> </head> <body> <p><!-- ...... --></p> </body> </html></cnt:xmlRest> </cnt:XMLContent> </http:body> </http:Response> <http:Response rdf:ID="resp1"> <http:httpVersion>1.1</http:httpVersion> <http:statusCodeNumber>200</http:statusCodeNumber> <http:statusCode rdf:resource="http://www.w3.org/2008/http-statusCodes#200"/> <http:reasonPhrase>OK</http:reasonPhrase> <http:headers rdf:parseType="Collection"> <http:MessageHeader> <http:fieldName>Date</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#date"/> <http:fieldValue>.......</http:fieldValue> </http:MessageHeader> <http:MessageHeader> <http:fieldName>Content-Type</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#content-type"/> <http:fieldValue>image/png</http:fieldValue> </http:MessageHeader> <http:MessageHeader> <http:fieldName>Vary</http:fieldName> <http:headerName rdf:resource="http://www.w3.org/2008/http-headers#vary"/> <http:fieldValue>accept</http:fieldValue> <http:headerElements rdf:parseType="Collection"> <http:HeaderElement> <http:elementName>accept</http:elementName> </http:HeaderElement> </http:headerElements> </http:MessageHeader> </http:headers> <http:body> <cnt:Base64Content> <cnt:bytes rdf:datatype="http://www.w3.org/2001/XMLSchema#base64Binary">qouh3908t38hohfrf..........</cnt:bytes> </cnt:Base64Content> </http:body> </http:Response> </rdf:RDF>
An RDF Schema can be found at @@@TBD@@@.
[Editor's note: add link to RDF schema]
http://www.w3.org/TR/rdf-primer/
http://www.w3.org/TR/rdf-schema/
http://www.w3.org/TR/xml/
[Editor's note: add changes from this version to WD-HTTP-in-RDF-20080908]
Besides several editorial changes, the following is a list of substantial changes since the 23 March, 2007 Working Draft: