RFC 
 TOC 
Network Working Group J.C. Gregorio 
INTERNET DRAFT BitWorking, Inc 
<draft-gregorio-01.html>  July 2003 
Category: Standards Track  
Expires: January 2004  

The EchoAPI
draft-gregorio-01.html


 TOC 

1  Status of this Memo

This document is an Internet-Draft and is in full conformance with all provisions of Section 10 of RFC2026.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet-Drafts.

Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress".

The list of current Internet-Drafts can be accessed at http://www.ietf.org/ietf/1id-abstracts.txt.

The list of Internet-Draft Shadow Directories can be accessed at http://www.ietf.org/shadow.html.

This Internet-Draft will expire in January 2004.


 TOC 

2  Copyright Notice

Copyright (C) The Internet Society (2003). All Rights Reserved.

Abstract

This memo presents a technique for using XML (Extensible Markup Language) and HTTP (HyperText Transport Protocol) to edit content.


 RFC 
 TOC 

Table of Contents

Introduction
Terminology
Scope
The EchoAPI Model
 4.1  Introspection
 4.2  Creating a new Entry
 4.3  Editing an entry
 4.4  Deleting an entry
 4.5  Editing User Prefs
 4.6  Adding Comments
  4.6.1  Comment Auto-Discovery
   4.6.1.1  HTML Auto-Discovery
   4.6.1.2  Echo Feed Auto-Discovery
 4.7  Introspection Discovery
Functional Specification
 5.1  Formats
 5.2  Actions
  5.2.1  Create Entry
  5.2.2  Edit Entry
  5.2.3  Delete Entry
  5.2.4  Get List of Entries
  5.2.5  Get User Info
  5.2.6  Set User Info
  5.2.7  Get Categories
  5.2.8  Set Categories
  5.2.9  Result Codes
  5.2.10  Content
Security Considerations
Revision History
§  References
§  Author's Address
§  Intellectual Property and Copyright Statements

   Figure 1: Introspection
   Figure 2: Introspection
   Figure 3: Introspection - Alternate URI 2
   Figure 4: Create New Entry
   Figure 5: GET User Preferences
   Figure 6: GET User Preferences Response
   Figure 7: SET User Preferences
   Figure 8: SET User Preferences Response
   Figure 9: Create New Comment
   Figure 10: Create New Comment Response
   Figure 11: Create New Comment


 TOC 

1  Introduction

EchoAPI is an application level protocol for publishing, and editing web resources. EchoAPI unifies many disparate publishing mechanisms into a single, simple, extensible protocol. The protocol at its core is the HTTP transport of an XML payload.


 TOC 

2  Terminology

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY",the and "OPTIONAL" in this document are to be interpreted as described in RFC2119.


 TOC 

3  Scope

This document covers the editing of content of a periodically updating website using the HTTP and XML. Many of the XML payloads are in Echo format, which will not be documented here.

This specification will mirror some of the functionality of the Blogger 2.0 API, which includes support for the Server Introspection API.


 TOC 

4  The EchoAPI Model

4.1  Introspection

When editing the content of the website http://example.org/reilly, the first thing to do is find out the servers capabilites. Each server may only implement a subset of this specification, and the 'introspection' file lists all the functions that each site supports. This mirrors the Server Introspection API used by the Blogger 2.0 API.

<?xml version="1.0" encoding='iso-8859-1'?>
<introspection> 
  <edit-entry>http://example.org/reilly/</edit-entry>
  <user-prefs>http://example.org/reilly/prefs</user-prefs>
</introspection>  

Figure 1: Introspection

This site furnishes only a minimal set of functionality. A more full featured site might return:

<?xml version="1.0" encoding='iso-8859-1'?>
<introspection> 
  <edit-entry>http://example.org/reilly/</edit-entry>
  <user-prefs>http://example.org/reilly/prefs</user-prefs>
  <edit-template>http://example.org/reilly/templates</edit-template>
  <categories>http://example.org/reilly/categories</categories>
</introspection>                  

Figure 2: Introspection

Where to store the introspection file on the web and how to make the URI of the introspection file easy to find will be discussed later.

This particular introspection file for http://example.org/rielly tells us that the EchoAPI implementation supports both the 'edit-entry' and the 'user-prefs' interfaces, and it also specifies the URIs to use for each of these interfaces.

Note that the example URIs given are not normative, nor are there any constraints on the URIs that can be specified. The 'edit-entry' URI could just have easily been:

http://dev.example.net/api?userid=reilly&amp;action=edit

Figure 3: Introspection - Alternate URI 2

4.2  Creating a new Entry

HTTP POST is used for content creation. The new content is formatted as an Echo Entry and then POST'd to the URI given in the 'edit-entry' element of the introspection file.

To create a new Entry on the site the client connects to port 80 on http://example.org and sends:

POST /reilly HTTP/1.1
Content-Type: application/not-echo+xml

<?xml version="1.0" encoding='iso-8859-1'?>
<entry> 
    <title>My First Entry</title> 
    <subtitle>In which a newbie learns to blog...</subtitle> 
    <summary>A very boring entry...</summary> 
 
    <author> 
      <name>Bob B. Bobbington</name> 
      <homepage>http://bob.name/</homepage> 
      <weblog>http://bob.blog/</weblog> 
    </author> 

    <issued>2003-02-05T12:29:29</issued> 
 
    <content type="application/xhtml+xml" xml:lang="en-us"> 
      <p xmlns="...">Hello, <em>weblog</em> world! 2 &lt; 4!</p> 
    </content>  
</entry> 

This would create a new weblog Entry with the title "My First Entry".

Figure 4: Create New Entry

Assuming everything goes well and the Entry is created, the response might look like:

HTTP/1.1 201 Created
Content-Type: application/not-echo+xml

<?xml version="1.0" encoding='iso-8859-1'?>
<entry> 
    <title>My First Entry</title> 
    <subtitle>In which a newbie learns to blog...</subtitle> 
    <summary>A very boring entry...</summary> 
 
    <author> 
      <name>Bob B. Bobbington</name> 
      <homepage>http://bob.name/</homepage> 
      <weblog>http://bob.blog/</weblog> 
    </author> 

    <issued>2003-02-05T12:29:29</issued> 
    <created>2003-02-05T14:10:58Z</created> 
    <modified>2003-02-05T14:10:58Z</modified> 
    
    <link>http://example.org/reilly/2003/02/05#My_First_Entry</link>
    <id>urn:example.org:reilly:1</id>
 
    <content type="application/xhtml+xml" xml:lang="en-us"> 
      <p xmlns="...">Hello, <em>weblog</em> world! 2 &lt; 4!</p> 
    </content>  
</entry> 

Information has been added to the Entry, including the 'link', 'id', 'created' and 'modified' elements.

@@ Editors Note: Beware the Echo syntax is still in flux and the above example is not normative. @@

4.3  Editing an entry

Editing an Entry is the same as creating one, the difference is that the Entry you POST already has 'id' filled in. HTTP POST the modified Echo Entry to the same URI used to create an entry, the URI stored in the 'create-entry' element of the introspection file.

If we update our content element and POST it, the transaction looks like:

POST /reilly HTTP/1.1
Content-Type: application/not-echo+xml

<?xml version="1.0" encoding='iso-8859-1'?>
<entry> 
    <title>My First Entry</title> 
    <subtitle>In which a newbie learns to blog...</subtitle> 
    <summary>A very boring entry...</summary> 
 
    <author> 
      <name>Bob B. Bobbington</name> 
      <homepage>http://bob.name/</homepage> 
      <weblog>http://bob.blog/</weblog> 
    </author> 

    <issued>2003-02-05T12:29:29</issued> 
    <created>2003-02-05T14:10:58Z</created> 
    <modified>2003-02-05T14:10:58Z</modified> 
    
    <link>http://example.org/reilly/2003/02/05#My_First_Entry</link>
    <id>urn:example.org:reilly:1</id>
 
    <content type="application/xhtml+xml" xml:lang="en-us"> 
      <p xmlns="...">A big hello to the 
         <em>weblog</em> world! 2 &lt; 4!</p> 
    </content>  
</entry> 

The server knows this is an update instead of creation from the existence of the 'id' element.

The response from the server is the same, on success returning a filled in Entry:

HTTP/1.1 200 Ok
Content-Type: application/not-echo+xml


<?xml version="1.0" encoding='iso-8859-1'?>
<entry> 
    <title>My First Entry</title> 
    <subtitle>In which a newbie learns to blog...</subtitle> 
    <summary>A very boring entry...</summary> 
 
    <author> 
      <name>Bob B. Bobbington</name> 
      <homepage>http://bob.name/</homepage> 
      <weblog>http://bob.blog/</weblog> 
    </author> 

    <issued>2003-02-05T12:29:29</issued> 
    <created>2003-02-05T14:10:58Z</created> 
    <modified>2003-02-05T14:20:03Z</modified> 
    
    <link>http://example.org/reilly/2003/02/05#My_First_Entry</link>
    <id>urn:example.org:reilly:1</id>
 
    <content type="application/xhtml+xml" xml:lang="en-us"> 
      <p xmlns="...">A big hello to the 
            <em>weblog</em> world! 2 &lt; 4!</p> 
    </content>  
</entry> 

The 'content' element now reflects the updated content, and the 'modifed' element has been updated to reflect when the change was made.

How to retrieve the Echo formatted Entry is not covered at this time.

4.4  Deleting an entry

Deleting an Entry also uses the same 'edit-entry' URI.

You POST to the 'edit-entry' URI the body:

POST /reilly HTTP/1.1
Content-Type: text/xml

<?xml version="1.0" encoding='iso-8859-1'?>
<delete id="urn:example.org:reilly:1" /> 

The POST handler on the server side uses the value of the 'id' attribute to determine which Entry to delete.

The response from the server upon a successful deletion is:

HTTP/1.1 200 Ok 

4.5  Editing User Prefs

The preferences for the user are edited through the URI supplied in the 'user-prefs' element of the introspection file. To retrieve the current user preferences issue and HTTP GET on the URI.

For our website at http://example.org/reilly, the request would look like:

GET /reilly/prefs HTTP/1.1

This would return a list of user configuration parameters and their values.

Figure 5: GET User Preferences

The reponse would look like:

HTTP/1.1 200 OK
Content-Type: text/xml
 
<?xml version="1.0" encoding='iso-8859-1'?>
<userprefs xmlns="http://www.purl.org/EchoAPI/UserPrefs/">
   <name>Reilly</name>
   <id>1234</id>
   <email>reilly@example.org</email>
</userprefs>       

The values can then be updated, and doing an HTTP POST of the updated file back to the 'user-prefs' URI will update the user preferences.

Figure 6: GET User Preferences Response

For example, if we update our email address, from reilly@example.org to mr_reilly@example.org, we would then POST back to the 'user-prefs' URI:

POST /reilly/prefs HTTP/1.1
Content-Type: text/xml
 
<?xml version="1.0" encoding='iso-8859-1'?>
<userprefs xmlns="http://www.purl.org/EchoAPI/UserPrefs/">
   <name>Reilly</name>
   <id>1234</id>
   <email>mr_reilly@example.org</email>
</userprefs>

Assuming the update goes successfully, the updated user preferences will be returned in the response.

Figure 7: SET User Preferences

The reponse would look like:

HTTP/1.1 200 OK
Content-Type: text/xml
 
<?xml version="1.0" encoding='iso-8859-1'?>
<userprefs xmlns="http://www.purl.org/EchoAPI/UserPrefs/">
   <name>Reilly</name>
   <id>1234</id>
   <email>my_reilly@example.org</email>
</userprefs>       

Figure 8: SET User Preferences Response

4.6  Adding Comments

This part of the EchoAPI does not use the URIs listed in the 'introspection' file.

There are different interfaces now circulating for an TrackBack, Ping-Back, Post-It. All of these are a way of commenting on an item. The only thing missing from the mix is a way to do "comments" themselves. This section of the specification is intended to be a roll-up of all the above specifications and to cover comments as well.

Creating a comment is similar to creating an Entry, that is, you HTTP POST an Entry to a URI. For now we will defer discussing how to obtain the corrent URI to POST to.

For example, if "http://example.org/reilly/1" is the URI that accepts comments for the first Entry on the website http://example.org/reilly, then the client would open port 80 on example.org and send:

POST /reilly/1 HTTP/1.1
Content-Type: text/xml

<entry> 
  <title>My Comment</title> 
  <author> 
    <name>Fred F. Fobbington</name> 
    <homepage>http://fred.name/</homepage> 
    <weblog>http://fred.blog/</weblog> 
  </author> 
  <issued>2003-02-05T12:29:29</issued> 
  <content type="application/xhtml+xml" xml:lang="en-us"> 
    <p xmlns="...">Welcome to the neighborhood!</p> 
  </content>  
</entry> 

This would create a new comment/trackback for the first Entry on "http://example.org/reilly".

Figure 9: Create New Comment

The response to this POST, assuming everything went without error, is a filled in Echo Entry, and would look like this:

HTTP/1.1 201 Created
Content-Type: application/not-echo+xml

<entry> 
  <title>My Comment</title> 
  <author> 
    <name>Fred F. Fobbington</name> 
    <homepage>http://fred.name/</homepage> 
    <weblog>http://fred.blog/</weblog> 
  </author> 
  <issued>2003-02-05T12:29:29</issued> 
  <created>2003-02-05T14:20:12Z</created> 
  <modified>2003-02-05T14:20:12Z</modified> 
    
  <link>http://example.org/reilly/2003/02/05#comment1</link>
  <id>urn:example.org:reilly:1:1</id>
 
  <content type="application/xhtml+xml" xml:lang="en-us"> 
    <p xmlns="...">Welcome to the neighborhood!</p> 
  </content>  
</entry> 

This would create a new comment/trackback for the first Entry on "http://example.org/reilly".

Figure 10: Create New Comment Response

4.6.1  Comment Auto-Discovery

Two mechanisms are available for discovering the URI that you would use to create a comment. The first is a way to put that information in HTML, the second is a way to embed that information in an Echo feed.

4.6.1.1  HTML Auto-Discovery

The <link> element has been successful in finding RSS feeds and is appropriate to use here for discovering the "commentURI" in HTML pages. The <link> tag goes in the <head> section of an HTML page and is used to indicate a document relationship. For a similar example of using the link tag to discover a URI, refer to the usage of of the link tag for RSS Auto-Discovery. In this case the form of the link tag used to indicate the location of the comment URI is:

<link rel="service.comment" type="application/not-echo+xml" 
      href="url goes here" title="EchoComment">

Figure 11: Create New Comment

Where href should be set to the URI that accepts POSTs for comments. Applications looking for a URI to post comments to need to parse out the headers of the web page and look for a link tag that has a relation rel of "comment" and a mime-type of "application/not-echo+xml".

4.6.1.2  Echo Feed Auto-Discovery

There is an item level element named 'comment' in Echo that is used to provide the location of the "commentURI" endpoint to aggregator software. This is providing the same information as the link tag does in HTML. @@ No example yet. Needs to be specified. @@

4.7  Introspection Discovery


 TOC 

5  Functional Specification

5.1  Formats

@@ TBD @@ More formal specification of all the XML formats used in this protocol.

5.2  Actions

@@ TBD @@ A more formal specification of all the actions.

5.2.1  Create Entry

None.

5.2.2  Edit Entry

None.

5.2.3  Delete Entry

None.

5.2.4  Get List of Entries

None.

5.2.5  Get User Info

None.

5.2.6  Set User Info

None.

5.2.7  Get Categories

None.

5.2.8  Set Categories

None.

5.2.9  Result Codes

@@TBD@@ Mostly 200 for normal responses, seems that 30X codes for redirects are useful but might make implementations a little harder to implement. @@Ref CommentAPI problems returning a 303 vs 200@@

5.2.10  Content

@@TBD@@ How does an Echo document change when used in these different contexts? Which parts that are required when found in a feed become optional when used in creating an Entry?


 TOC 

6  Security Considerations

@@TBD@@ Talk here about using HTTP basic and digest authentication.

@@TBD@@ Talk here about denial of service attacks using large XML files, or the billion laughs DTD attack.


 TOC 

7  Revision History

5Jul2003 - Renamed from EchoAPI.html to follow the more commonly used format: draft-gregorio-NN.html. Renamed all references to URL to URI. Broke out introspection into it's own section. Added the Revision History section. Added more to the warning that the example URIs are not normative.

 TOC 

References

[RFC2119]Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, March 1997.

 TOC 

Author's Address

 Joe Gregorio
 BitWorking, Inc
 1002 Heathwood Dairy Rd.
 Apex, NC 27502
 US
Phone: +1 919 272 3764
EMail: joe@bitworking.com
URI: http://bitworking.com/
 

 TOC 

1  Intellectual Property Statement

The IETF takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on the IETF's procedures with respect to rights in standards-track and standards-related documentation can be found in BCP-11. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification can be obtained from the IETF Secretariat.

The IETF invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to practice this standard. Please address the information to the IETF Executive Director.


 TOC 

2  Full Copyright Statement

Copyright (C) The Internet Society (2003). All Rights Reserved.

This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to the Internet Society or other Internet organizations, except as needed for the purpose of developing Internet standards in which case the procedures for copyrights defined in the Internet Standards process must be followed, or as required to translate it into languages other than English.

The limited permissions granted above are perpetual and will not be revoked by the Internet Society or its successors or assignees.

This document and the information contained herein is provided on an "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.


 TOC 

3  Acknowledgement

Funding for the RFC editor function is currently provided by the Internet Society.