RSS <cloud> tag
Usage
Sets up processes that are automatically notified when a feed has been updated. A feed reader can register with a cloud server and receive notifications of this. This way, the feed reader doesn't have to periodically check the feed for updates.
Attributes
| Attribute | Description |
|---|---|
| domain | Domain of the cloud server |
| port | Port the cloud server is running on |
| path | Location of the cloud server's responder |
| registerProcedure | Name of procedure to call to request notification |
| protocol | Protocol to use for communications with the cloud server (xml-rpc or soap) |
Example
RSS feed with cloud setup:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>Landofcode.com web tutorials updates</title>
<link>http://www.landofcode.com</link>
<description>Web development tutorials</description>
<cloud domain="www.landofcode.com" port="80" path="/RPC"
registerProcedure="autoNotify" protocol="xml-rpc" />
<item>
<title>Site usability</title>
<link>http://www.landofcode.com/usability.html</link>
<description>Learn how to improve the usability of your site</description>
</item>
<item>
<title>New HTML tutorials</title>
<link>http://www.landofcode.com/html-tutorials/</link>
<description>Five new HTML tutorials have been added to the site</description>
</item>
</channel>
</rss>