﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-honzeland-随笔分类-Restful</title><link>http://www.blogjava.net/honzeland/category/43479.html</link><description>记录点滴。。。</description><language>zh-cn</language><lastBuildDate>Fri, 08 Jan 2010 07:06:36 GMT</lastBuildDate><pubDate>Fri, 08 Jan 2010 07:06:36 GMT</pubDate><ttl>60</ttl><item><title>Web application design: the REST of the story</title><link>http://www.blogjava.net/honzeland/archive/2010/01/08/308718.html</link><dc:creator>honzeland</dc:creator><author>honzeland</author><pubDate>Fri, 08 Jan 2010 06:50:00 GMT</pubDate><guid>http://www.blogjava.net/honzeland/archive/2010/01/08/308718.html</guid><wfw:comment>http://www.blogjava.net/honzeland/comments/308718.html</wfw:comment><comments>http://www.blogjava.net/honzeland/archive/2010/01/08/308718.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/honzeland/comments/commentRss/308718.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/honzeland/services/trackbacks/308718.html</trackback:ping><description><![CDATA[From: <a title="Web application design: the REST of the story " href="http://www.findinglisp.com/blog/2004/11/web-application-design-rest-of-story.html">Web application design: the REST of the story </a><br />
Key points:<br />
<ul>
    <li>HTTP is a very general, scalable protocol. While most people only
    think of HTTP as including the GET and POST methods used by typical
    interactive browsers, HTTP actually defines several other methods that
    can be used to manipulate resources in a properly designed application
    (PUT and DELETE, for instance). The HTTP methods provide the <em>verbs</em> in a web interaction.</li>
    <li>Servers are completely stateless. Everything necessary to service a request is included by the client in the request.</li>
    <li>All application resources are described by unique URIs. Performing
    a GET on a given URI returns a representation of that resource's state
    (typically an HTML page, but possibly something else like XML). The
    state of a resource is changed by performing a POST or PUT to the
    resource URI. Thus, URIs name the <em>nouns</em> in a web interaction.</li>
</ul>
<br />
<br />
<img src ="http://www.blogjava.net/honzeland/aggbug/308718.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/honzeland/" target="_blank">honzeland</a> 2010-01-08 14:50 <a href="http://www.blogjava.net/honzeland/archive/2010/01/08/308718.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>